blob: 0eda791ecdf4371b449df4b09562f884992705c7 [file] [log] [blame]
/*
* strncpy.c
*
* strncpy()
*/
#include <string.h>
char *strncpy(char *dst, const char *src, size_t n)
{
char *q = dst;
const char *p = src;
char ch;
while (n--) {
*q++ = ch = *p++;
if (!ch)
break;
}
return dst;
}