blob: 255b7a721f8628250ddcd41d50db7256468f360e (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#include <string.h>
char *strncat(char *d, const char *s, size_t n)
{
char *a = d;
d += strlen(d);
while (n && (*d++ = *s++)) n--;
*d++ = 0;
return a;
}
|