diff options
Diffstat (limited to 'libft/src/ft_ischarset.c')
-rw-r--r-- | libft/src/ft_ischarset.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libft/src/ft_ischarset.c b/libft/src/ft_ischarset.c index 95b9172..eb57d87 100644 --- a/libft/src/ft_ischarset.c +++ b/libft/src/ft_ischarset.c @@ -14,7 +14,7 @@ #include <stddef.h> #include <inttypes.h> -uint8_t +t_bool ft_ischarset(const char *charset, int c) { size_t i; @@ -23,8 +23,8 @@ uint8_t while (charset[i]) { if (charset[i] == c) - return (1); + return (TRUE); i++; } - return (0); + return (FALSE); } |