tgrekov-fdf
HIVE fdf May 2024
|
Definition in file ft_strrchr.c.
Go to the source code of this file.
Functions | |
char * | ft_strrchr (const char *s, int c) |
Finds last occurence of c in string at s . | |
char * ft_strrchr | ( | const char * | s, |
int | c | ||
) |
Finds last occurence of c
in string at s
.
Check is done as char
[in] | s | Null-terminated string haystack to search |
[in] | c | int needle to find |
char* | Pointer to last 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_strrchr.c.