kolibrios/programs/develop/metcc/trunk/libc/string/strncpy.c

15 lines
228 B
C
Raw Normal View History

char* strncpy(char* strDest,const char* strSource,int count)
{
char* res;
res=strDest;
while (count>0)
{
*strDest=*strSource;
if (*strSource!='\0')
strSource++;
strDest++;
count--;
}
return res;
}