![]() |
tgrekov-fdf
HIVE fdf May 2024
|
Definition in file ft_strchr.c.
Go to the source code of this file.
Functions | |
| char * | ft_strchr (const char *s, int c) |
Finds first occurence of character c in string s. | |
| char * ft_strchr | ( | const char * | s, |
| int | c | ||
| ) |
Finds first occurence of character c in string s.
Check is done as char
| [in] | s | Null-terminated string haystack to search |
| [in] | c | int needle to find |
| char* | Pointer to first occurence of needle c in haystack s. NULL if none is found before the end of the string. |
Definition at line 30 of file ft_strchr.c.