kolibrios/programs/develop/ktcc/trunk/libc/string/strcpy.c
siemargl 845d2f0618 small fixes. need more
git-svn-id: svn://kolibrios.org@6410 a494cfbc-eb01-0410-851d-a64ba20cac60
2016-04-27 19:59:20 +00:00

7 lines
129 B
C

char* strcpy(char* strDest,char* strSource)
{
char* res;
res=strDest;
while(*strDest++ = *strSource++) ;
return res;
}