|
libft
|
#include "libft.h"Go to the source code of this file.
Functions | |
| char * | ft_strrchr (const char *s, int c) |
| Search a character starting from the end. | |
| char * ft_strrchr | ( | const char * | s, |
| int | c | ||
| ) |
Search a character starting from the end.
Searches a character from a string and returns it's address.
| s | String |
| c | Character |
Definition at line 15 of file ft_strrchr.c.