ft_strchr: initial implementation

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

View file

@ -6,7 +6,7 @@
/* By: kcolin <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/15 10:11:54 by kcolin #+# #+# */
/* Updated: 2024/10/16 10:24:26 by kcolin ### ########.fr */
/* Updated: 2024/10/16 10:34:08 by kcolin ### ########.fr */
/* */
/* ************************************************************************** */
@ -33,4 +33,6 @@ t_size ft_strlcat(char *dst, const char *src, t_size size);
int ft_toupper(int c);
int ft_tolower(int c);
char *ft_strchr(const char *s, int c);
#endif