feat: add ft_strchr function

This commit is contained in:
2025-10-08 10:24:57 +02:00
parent 9492262e6b
commit 1fd9f0c776
3 changed files with 20 additions and 0 deletions

View File

@@ -104,4 +104,6 @@ int ft_toupper(int c);
*/
int ft_tolower(int c);
char *ft_strchr(const char *s, int c);
#endif