|
libft
|
#include "libft.h"Go to the source code of this file.
Functions | |
| void | ft_striteri (char *s, void(*f)(unsigned int, char *)) |
| Calls a function for each char of a string. | |
| void ft_striteri | ( | char * | s, |
| void(*)(unsigned int, char *) | f | ||
| ) |
Calls a function for each char of a string.
Function f takes the index and address of a character in the string.
| s | String |
| f | Function |
Definition at line 15 of file ft_striteri.c.