From bbdc932411501e239757985023942f93d1b21f46 Mon Sep 17 00:00:00 2001 From: Charles Date: Sat, 12 Oct 2019 13:54:35 +0200 Subject: Fixed ft_strlcat and ft_strnstr to pass Libftest tests --- libft.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libft.h') diff --git a/libft.h b/libft.h index a7da118..31fcfe0 100644 --- a/libft.h +++ b/libft.h @@ -6,7 +6,7 @@ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/10/07 09:45:02 by cacharle #+# #+# */ -/* Updated: 2019/10/09 08:58:46 by cacharle ### ########.fr */ +/* Updated: 2019/10/11 14:58:42 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ @@ -48,6 +48,7 @@ int ft_isalnum(int c); int ft_isascii(int c); int ft_isprint(int c); int ft_toupper(int c); +int ft_tolower(int c); void *ft_calloc(size_t count, size_t size); void *ft_memalloc(size_t size); void ft_memdel(void **ap); -- cgit