libft
|
#include "libft.h"
Go to the source code of this file.
Functions | |
void | ft_striter (char *s, void(*f)(char *)) |
Applies a function to characters of a string. More... | |
void ft_striter | ( | char * | s, |
void(*)(char *) | f | ||
) |
Applies a function to characters of a string.
Applies the function f
to each character of the string passed as argument. Each character is passed by address to f
to be modified if necessary.
s | The string to iterate. |
f | The function to apply to each character of s . |
Definition at line 25 of file ft_striter.c.