size_t ft_strlen(const char *s)
Replicates behaviour of strlen from libc.
char * ft_strjoin(const char *s1, const char *s2)
Joins two strings.
char * ft_strcat(char *s1, const char *s2)
Replicates behaviour of strcat from libc.
char * ft_strnew(size_t size)
Allocates a fresh string.
char * ft_strcpy(char *dst, const char *src)
Replicates behaviour of strcpy from libc.