Files
42-LibUnit/real_tests/ft_atoi/01_basic.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

20 lines
998 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* 01_basic.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dgaillet <dgaillet@student.42lyon.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2026/01/24 17:22:48 by dgaillet #+# #+# */
/* Updated: 2026/01/25 16:33:19 by elagouch ### ########.fr */
/* */
/* ************************************************************************** */
#include "../tests.h"
#include "libft.h"
int atoi_basic_test(void)
{
return (!(ft_atoi("42") == 42));
}