FEAT: atoi and strncmp tests

This commit is contained in:
2026-01-25 15:58:29 +01:00
parent 5c9ddd84b7
commit 442619f4cb
11 changed files with 36 additions and 29 deletions

View File

@@ -0,0 +1,18 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* 02_ko.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dgaillet <dgaillet@student.42lyon.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2026/01/24 17:23:00 by dgaillet #+# #+# */
/* Updated: 2026/01/24 17:23:01 by dgaillet ### ########lyon.fr */
/* */
/* ************************************************************************** */
#include "../tests.h"
int atoi_int_max_test(void)
{
return (ft_atoi("2147483647") == 2147483647);
}