Libft(23) - strdup
Libft(23) - strdup STRDUP(3) BSD Library Functions Manual STRDUP(3) NAME strdup, strndup -- save a copy of a string LIBRARY Standard C Library (libc, -lc) SYNOPSIS #include char * strdup(const char *s1); char * strndup(const char *s1, size_t n); DESCRIPTION The strdup() function allocates sufficient memory for a copy of the string s1, does the copy, and returns a pointer to it. The pointer may s..
2021.06.26