* 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
20 lines
998 B
C
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));
|
|
}
|