diff options
Diffstat (limited to 'include/libft_str.h')
| -rw-r--r-- | include/libft_str.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/libft_str.h b/include/libft_str.h index 80fb09f..e3faeab 100644 --- a/include/libft_str.h +++ b/include/libft_str.h @@ -6,7 +6,7 @@ /* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/01/31 10:39:22 by cacharle #+# #+# */ -/* Updated: 2020/02/10 04:32:44 by cacharle ### ########.fr */ +/* Updated: 2020/02/10 05:24:00 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ @@ -57,6 +57,9 @@ int ft_strcasecmp(const char *s1, const char *s2); int ft_strncasecmp(const char *s1, const char *s2, size_t n); size_t ft_strspn(const char *s, const char *charset); size_t ft_strcspn(const char *s, const char *charset); +char *ft_strpbrk(const char *s, const char *charset); +char *ft_strsep(char **stringp, const char *delim); +size_t ft_strnlen(const char *s, size_t maxlen); /* ** bloat ? |
