ft_strchr: initial implementation
This commit is contained in:
parent
1eb276c8cf
commit
3754c47e8c
3 changed files with 50 additions and 3 deletions
4
libft.h
4
libft.h
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue