Libft
 
Loading...
Searching...
No Matches
ft_split.c File Reference
#include "libft.h"
#include <stdlib.h>
Include dependency graph for ft_split.c:

Functions

char ** ft_split (char const *s, char c)
 Allocates with a malloc and returns an array of strings obtained by separating ’s’ using the character ’c’, used as a delimiter. The array must be terminated by NULL.