diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-08-17 17:22:24 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-08-17 17:22:24 +0200 |
commit | cfaf9947227065ce40661544dff9b3554ff5aca2 (patch) | |
tree | e0d5da338e8df09c71c47405f5558cb67aac1cf8 /libft/src/ft_isprint.c | |
parent | Updated TODO list (diff) | |
download | 42-minishell-cfaf9947227065ce40661544dff9b3554ff5aca2.tar.gz 42-minishell-cfaf9947227065ce40661544dff9b3554ff5aca2.tar.bz2 42-minishell-cfaf9947227065ce40661544dff9b3554ff5aca2.tar.xz 42-minishell-cfaf9947227065ce40661544dff9b3554ff5aca2.tar.zst 42-minishell-cfaf9947227065ce40661544dff9b3554ff5aca2.zip |
Set libft/ft_is* to type t_bool
Diffstat (limited to 'libft/src/ft_isprint.c')
-rw-r--r-- | libft/src/ft_isprint.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/libft/src/ft_isprint.c b/libft/src/ft_isprint.c index 12fdb7a..f4d1b73 100644 --- a/libft/src/ft_isprint.c +++ b/libft/src/ft_isprint.c @@ -10,10 +10,12 @@ /* */ /* ************************************************************************** */ -int +#include <libft.h> + +t_bool ft_isprint(int c) { if (c >= 32 && c <= 126) - return (1); - return (0); + return (TRUE); + return (FALSE); } |