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

17 lines
254 B
C
Raw Normal View History

#include <string.h>
char* strncpy(char* strDest,const char* strSource,size_t count)
{
char* res;
res=strDest;
while (count>0)
{
*strDest=*strSource;
if (*strSource!='\0')
strSource++;
strDest++;
count--;
}
return res;
}