|
libft
|
#include "libft.h"Go to the source code of this file.
Functions | |
| char * | ft_substr (char const *s, unsigned int start, size_t len) |
| Gets a piece of string out of a string. | |
| char * ft_substr | ( | char const * | s, |
| unsigned int | start, | ||
| size_t | len | ||
| ) |
Gets a piece of string out of a string.
Gets len length piece of string from a strung starting at index start.
| s | String |
| start | Starting index |
| len | How many chars |
Definition at line 22 of file ft_substr.c.