|
libft
|
#include "libft.h"Go to the source code of this file.
Functions | |
| char ** | ft_split (char const *s, char c) |
| Splits string to substrings. | |
| char ** ft_split | ( | char const * | s, |
| char | c | ||
| ) |
Splits string to substrings.
Splits string s by character c to substrings.
| s | String |
| c | Character |
Definition at line 71 of file ft_split.c.