Archived
1
0
This repository has been archived on 2024-10-25. You can view files and clone it, but cannot push or open issues or pull requests.
libft/ft_strchr.c
2023-11-06 11:00:52 +01:00

23 lines
998 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strchr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/01 15:45:18 by adjoly #+# #+# */
/* Updated: 2023/11/05 21:33:16 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
// char *ft_strchr(const char *s, int c)
// {
// int i;
// i = 0;
// while (s[i])
// {
// }
// }