20 lines
992 B
C
20 lines
992 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* 01_ok.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: dgaillet <dgaillet@student.42lyon.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2026/01/24 17:22:48 by dgaillet #+# #+# */
|
|
/* Updated: 2026/01/24 17:22:51 by dgaillet ### ########lyon.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "../tests.h"
|
|
#include "libft.h"
|
|
|
|
int atoi_ok_test(void)
|
|
{
|
|
return (ft_atoi("10") == 10);
|
|
}
|