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_isspace.c | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'libft/src/ft_isspace.c') diff --git a/libft/src/ft_isspace.c b/libft/src/ft_isspace.c index 8454c7c..2f2ad0e 100644 --- a/libft/src/ft_isspace.c +++ b/libft/src/ft_isspace.c @@ -12,15 +12,16 @@ #include -t_bool - ft_isspace(int c) +t_bool ft_isspace(int c) { - if (c == '\t' || - c == '\n' || - c == '\v' || - c == '\f' || - c == '\r' || - c == ' ') + if (c == '\t' + || c == '\n' + || c == '\v' + || c == '\f' + || c == '\r' + || c == ' ') + { return (TRUE); + } return (FALSE); } -- cgit v1.2.3