1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2024-10-30 12:03:52 -04:00
kernel/libk/strncpy.c

11 lines
210 B
C
Raw Normal View History

2017-11-04 07:43:55 -04:00
char *kstrncpy(char *const dest, const char *const src, const unsigned long length)
{
for (unsigned long i = 0; i < length; ++i) {
dest[i] = src[i];
}
dest[length] = 0;
return dest;
}