26 char*
strcat(
char* __restrict dst,
const char* __restrict src)
28 const size_t dstlen =
strlen(dst);
29 const size_t srclen =
strlen(src);
34 memcpy(dst + dstlen, src, srclen + 1);
size_t strlen(const char *str)
Returns the length of the given null-terminated byte string.
void * memcpy(void *__restrict dest, const void *__restrict src, size_t n)
Copies n characters from the object pointed to by src to the object pointed to by dest.
char * strcat(char *__restrict dst, const char *__restrict src)
Appends a copy of the null-terminated byte string pointed to by src to the end of the null-terminated...