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 /src/b_unset.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 'src/b_unset.c')
-rw-r--r-- | src/b_unset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/b_unset.c b/src/b_unset.c index 00fab78..0df411a 100644 --- a/src/b_unset.c +++ b/src/b_unset.c @@ -27,7 +27,7 @@ static t_bool ptr = (char*)arg; r = TRUE; - if (ft_isalpha(ptr[0]) == 0) + if (ft_isalpha(ptr[0]) == FALSE) { r = FALSE; } |