From 8e87d9f316d83547a389b6af52a9b59f0e5081dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kha=C3=AFs=20COLIN?= Date: Tue, 15 Oct 2024 10:44:30 +0200 Subject: [PATCH] norminette: fix it --- libft.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/libft.h b/libft.h index 9ced8ab..652605d 100644 --- a/libft.h +++ b/libft.h @@ -6,20 +6,20 @@ /* By: kcolin +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/10/15 10:11:54 by kcolin #+# #+# */ -/* Updated: 2024/10/15 10:18:46 by kcolin ### ########.fr */ +/* Updated: 2024/10/15 10:40:58 by kcolin ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef LIBFT_H # define LIBFT_H -typedef unsigned int t_size; +typedef unsigned int t_size; -int ft_isalpha(int c); -int ft_isdigit(int c); -int ft_isalnum(int c); -int ft_isascii(int c); -int ft_isprint(int c); +int ft_isalpha(int c); +int ft_isdigit(int c); +int ft_isalnum(int c); +int ft_isascii(int c); +int ft_isprint(int c); t_size ft_strlen(const char *s);