Designing string/char functions, pointers

Testing own functions to support string defined as char[] or char*

Must NOT use the <string> library

1
2
3
4
5
6
7
8
9
10
11
12
  1.	myStrCopy: the whole string
a.	in: source str
b.	out: destination str

2.	myStrCopy: 
a.	in: source str, start, end
b.	out: destination str

3.	myStrCompare
a.	in: str1, str2
b.	out: {-1, 0, 1} for {<, =, >}
Topic archived. No new replies allowed.