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_iswhitespace.c | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'libft/src/ft_iswhitespace.c') diff --git a/libft/src/ft_iswhitespace.c b/libft/src/ft_iswhitespace.c index 3bb5868..49e214b 100644 --- a/libft/src/ft_iswhitespace.c +++ b/libft/src/ft_iswhitespace.c @@ -12,14 +12,15 @@ #include -t_bool - ft_iswhitespace(int c) +t_bool ft_iswhitespace(int c) { - if (c == '\t' || - c == '\v' || - c == '\f' || - c == '\r' || - c == ' ') + if (c == '\t' + || c == '\v' + || c == '\f' + || c == '\r' + || c == ' ') + { return (TRUE); + } return (FALSE); } -- cgit v1.2.3