40 s3 = malloc(s1_len + s2_len + 1);
void * ft_memcpy(void *dst, const void *src, size_t n)
Copies n bytes from byte string src to byte string dst.
char * ft_strjoin(char const *s1, char const *s2)
Allocates enough space for and appends string s2 to string s1 and returns the new string.
size_t ft_strlen(const char *str)
Get length of str.