#include "../ft_mem/ft_mem.h"
#include "ft_string.h"
#include <stdlib.h>
Go to the source code of this file.
|
| char * | ft_strjoin (char const *s1, char const *s2) |
| |
◆ ft_strjoin()
| char* ft_strjoin |
( |
char const * |
s1, |
|
|
char const * |
s2 |
|
) |
| |
Definition at line 17 of file ft_strjoin.c.
31 p_ret = malloc(s1_len + s2_len + 1);
36 p_ret[s1_len + s2_len] =
'\0';
void * ft_memmove(void *dst, const void *src, size_t n)
size_t ft_strlen(const char *s)