From c5aae008dee36276154882d8fd56c3bdeb473474 Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Tue, 27 Oct 2020 19:59:20 +0100 Subject: Now norme --- src/b_sqb_nbr.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/b_sqb_nbr.c') 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 -#include #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); -- cgit v1.2.3