15size_t ft_strlcpy(
char *dst,
const char *src,
size_t dstsize)
27 dst[dstsize - 1] =
'\0';
size_t ft_strlcpy(char *dst, const char *src, size_t dstsize)
Copies string to destination.
void * ft_memcpy(void *dst, const void *src, size_t n)
Copies memory to destination.
size_t ft_strlen(const char *s)
Length of the string.