ajout de strchrset

This commit is contained in:
Hugo LAMY
2020-02-16 15:12:44 +01:00
parent d7dd6e8ba8
commit bafcf928e4
3 changed files with 35 additions and 1 deletions

View File

@@ -6,7 +6,7 @@
/* By: hulamy <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/11/25 14:45:53 by hulamy #+# #+# */
/* Updated: 2019/11/26 18:46:22 by hulamy ### ########.fr */
/* Updated: 2020/02/16 15:10:37 by hulamy ### ########.fr */
/* */
/* ************************************************************************** */
@@ -33,6 +33,7 @@ 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);
int ft_strchrset(char *s, char *set);
int ft_strncmp(const char *s1, const char *s2, size_t n);
size_t ft_strlcpy(char *dst, const char *src, size_t size);
size_t ft_strlcat(char *dst, const char *src, size_t size);