From fe15975761f2dcb52d360a521c5ef912d66d5e1c Mon Sep 17 00:00:00 2001 From: Charles Date: Mon, 10 Feb 2020 05:24:41 +0100 Subject: Added ft_reverse, ft_isblank, ft_strnlen, ft_strpbrk, ft_strsep --- include/libft_ctype.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include/libft_ctype.h') diff --git a/include/libft_ctype.h b/include/libft_ctype.h index 85e0e05..ad42c64 100644 --- a/include/libft_ctype.h +++ b/include/libft_ctype.h @@ -6,7 +6,7 @@ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/01/31 10:35:31 by cacharle #+# #+# */ -/* Updated: 2020/01/31 10:36:34 by cacharle ### ########.fr */ +/* Updated: 2020/02/10 05:18:30 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ @@ -23,6 +23,7 @@ int ft_isalnum(int c); int ft_isascii(int c); int ft_isprint(int c); int ft_isspace(int c); +int ft_isblank(int c); /* ** conversion -- cgit