blob: fb70ab897c85963c2a06c1d69d1acb904de0c6aa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#include "memory.h"
char *strncat(char *restrict destination, char const *restrict source,
size_t max_len)
{
memcpy(destination + strlen(destination), source,
strnlen(source, max_len));
return destination;
}
|