Thread
:
[help] How to Copy String from one array to another without using string.h file
View Single Post
xpi0t0s
Mentor
14Nov2008,23:28
We're way past the deadline (whichever way the date works) so try this one instead (untested):
Code:
void my_strcpy(char *dest,const char *src) { while (*dest = *(src++)) ; }