Home-grown xstrlcpy()

This commit is contained in:
Arun Prakash Jana 2017-05-16 22:22:49 +05:30
parent 3243a3082a
commit b817699b7f
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 3 additions and 2 deletions

5
nnn.c
View File

@ -205,8 +205,9 @@ max_openfds()
static void
xstrlcpy(char *dest, const char *src, size_t n)
{
strncpy(dest, src, n - 1);
dest[n - 1] = '\0';
while (--n && (*dest++ = *src++));
if (!n)
*dest = '\0';
}
/*