/* ************************************************************************** */ /* */ /* :::::::: */ /* test18.c :+: :+: */ /* +:+ */ /* By: djonker +#+ */ /* +#+ */ /* Created: 2023/02/21 22:31:27 by djonker #+# #+# */ /* Updated: 2023/10/18 17:09:01 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ #include "../../tmp/libft.h" #include int main(void) { char *str; int a; str = "\n654\n"; a = 654; if (ft_atoi(str) != a) return (1); return (0); }