String Functions
LIB_FT
ft_strchr.c
This material is for educational purposes only. Use it to understand concepts and develop your own solutions.
char *ft_strchr(const char *s, int c);
Searches for the first occurrence of a character in a string.
ft_strchr
scans the string s
until it finds the first occurrence of the character c
(converted to char
).