Files
42-LibUnit/real_tests/ft_atoi/02_int_max.c
Erwann Lagouche cf491b279d feat/stdout (#3)
* feat: disable standard output for tests

* fuck les fds

* patch some complation issues

* style: norm

* feat: timeout

* fix: patc more stuff

* fix: patch merge

* feat: more tests
2026-01-25 16:43:39 +01:00

19 lines
997 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* 02_int_max.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dgaillet <dgaillet@student.42lyon.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2026/01/24 17:23:00 by dgaillet #+# #+# */
/* Updated: 2026/01/25 16:33:35 by elagouch ### ########.fr */
/* */
/* ************************************************************************** */
#include "../tests.h"
int atoi_int_max_test(void)
{
return (!(ft_atoi("2147483647") == 2147483647));
}