libft
|
#include "libft.h"
Go to the source code of this file.
Functions | |
int | ft_strcchr (char const *str, char c) |
Counts the number of occurrences of a character in a string. More... | |
int ft_strcchr | ( | char const * | str, |
char | c | ||
) |
Counts the number of occurrences of a character in a string.
str | The string in which to search. |
c | The character for which to search. |
Definition at line 23 of file ft_strcchr.c.