diff options
Diffstat (limited to 'libc-top-half/musl/src/string/strncat.c')
-rw-r--r-- | libc-top-half/musl/src/string/strncat.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/string/strncat.c b/libc-top-half/musl/src/string/strncat.c new file mode 100644 index 0000000..01ca2a2 --- /dev/null +++ b/libc-top-half/musl/src/string/strncat.c @@ -0,0 +1,10 @@ +#include <string.h> + +char *strncat(char *restrict d, const char *restrict s, size_t n) +{ + char *a = d; + d += strlen(d); + while (n && *s) n--, *d++ = *s++; + *d++ = 0; + return a; +} |