From 4e16203d49405cc0eb81d82693e8606e80d004fd Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Tue, 29 Sep 2020 19:00:27 +0200 Subject: Some norm --- libft/src/ft_isascii.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'libft/src/ft_isascii.c') diff --git a/libft/src/ft_isascii.c b/libft/src/ft_isascii.c index 04e63c3..d799d52 100644 --- a/libft/src/ft_isascii.c +++ b/libft/src/ft_isascii.c @@ -12,8 +12,7 @@ #include -t_bool - ft_isascii(int c) +t_bool ft_isascii(int c) { if (c >= 0 && c <= 127) return (TRUE); -- cgit v1.2.3