Browse Source

Home-grown xstrlcpy()

master
Arun Prakash Jana 8 years ago
parent
commit
b817699b7f
No known key found for this signature in database GPG Key ID: A75979F35C080412
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      nnn.c

+ 3
- 2
nnn.c View File

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


/* /*


||||||
x
 
000:0
Loading…
Cancel
Save