diff options
Diffstat (limited to 'userland/libc/string/strncpy.c')
-rw-r--r-- | userland/libc/string/strncpy.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/userland/libc/string/strncpy.c b/userland/libc/string/strncpy.c index 0e88c63..fb89d38 100644 --- a/userland/libc/string/strncpy.c +++ b/userland/libc/string/strncpy.c @@ -4,10 +4,12 @@ char *strncpy(char *s1, const char *s2, size_t n) { char *rc = s1; for (; n > 0; s1++, s2++, n--) { *s1 = *s2; - if (!*s2) + if (!*s2) { break; + } } - for (; n > 0; n--,s1++) + for (; n > 0; n--, s1++) { *s1 = '\0'; + } return rc; } |