ft_strrchr: intial implementation

This commit is contained in:
Khaïs COLIN 2024-10-16 10:52:03 +02:00
parent 3754c47e8c
commit 10cf338cbf
3 changed files with 50 additions and 2 deletions

View file

@ -34,5 +34,6 @@ int ft_toupper(int c);
int ft_tolower(int c);
char *ft_strchr(const char *s, int c);
char *ft_strrchr(const char *s, int c);
#endif