![]() |
tgrekov-pipex
HIVE pipex May 2024
|
Definition in file ft_split.c.
#include "libft.h"Go to the source code of this file.
Functions | |
| char ** | ft_split (char const *s, char c) |
Split string s by characer c into allocated array of strings, with NULL as the last element. | |
| char ** ft_split | ( | char const * | s, |
| char | c | ||
| ) |
Split string s by characer c into allocated array of strings, with NULL as the last element.
| [in] | s | Null-terminated string to split |
| [in] | c | Character to split on |
| char** | Allocated array of allocated string pointers, with NULL as the last element |
Definition at line 72 of file ft_split.c.
References ft_calloc(), and ft_substr().