ref: bbef0f7405b510a0913d209bf77f647280d9184a
dir: /lib/c/strncpy.c/
#include <string.h>
#undef strncpy
char *
strncpy(char * restrict dst, const char * restrict src, size_t n)
{
char *ret = dst;
for (; n > 0 && *src; --n)
*dst++ = *src++;
while (n-- > 0)
*dst++ = '\0';
return ret;
}