diff options
Diffstat (limited to '')
-rw-r--r-- | src/b_sqb_nbr.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/b_sqb_nbr.c b/src/b_sqb_nbr.c index 0f96e82..0e2ab73 100644 --- a/src/b_sqb_nbr.c +++ b/src/b_sqb_nbr.c @@ -11,11 +11,10 @@ /* ************************************************************************** */ #include <libft.h> -#include <stdint.h> #include "d_define.h" -static t_bool b_sqb_nbr_tests(uint8_t id, int32_t n1, int32_t n2) +static t_bool b_sqb_nbr_tests(unsigned char id, int n1, int n2) { if (id == B_ID_SQB_EQ && n1 == n2) return (TRUE); @@ -32,7 +31,7 @@ static t_bool b_sqb_nbr_tests(uint8_t id, int32_t n1, int32_t n2) return (FALSE); } -uint8_t b_sqb_nbr(uint8_t id, char *argv[]) +unsigned char b_sqb_nbr(unsigned char id, char *argv[]) { if (b_sqb_nbr_tests(id, ft_atoi(argv[0]), ft_atoi(argv[2])) == TRUE) return (0); |