From 198f56177b8a16fdbd116f1b1565ce9c309c2caa Mon Sep 17 00:00:00 2001 From: Raphael Date: Mon, 8 Sep 2025 10:23:24 +0200 Subject: [PATCH] test(convert): adding test for itoa - adding test with 13 7 for the captain of the 7th divison of the gotei 13 (it's me btw) --- test/convert/test_itoa.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/convert/test_itoa.c b/test/convert/test_itoa.c index fb273fe..b84d08b 100644 --- a/test/convert/test_itoa.c +++ b/test/convert/test_itoa.c @@ -6,7 +6,7 @@ /* By: rparodi +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/09/04 16:54:42 by rparodi #+# #+# */ -/* Updated: 2025/09/05 16:10:48 by rparodi ### ########.fr */ +/* Updated: 2025/09/08 10:09:06 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ @@ -19,7 +19,7 @@ int main(void) { - const int integer[] = {0, 42, -42, + -42, -2147483648, 2147483647}; + const int integer[] = {0, 42, -42, +-42, -2147483648, 2147483647, 13, 7}; char result[1024]; size_t i;