/* ************************************************************************** */ /* */ /* .--. _ */ /* test2.c |o_o || | */ /* |:_/ || |_ _ ___ __ */ /* By: djonker // \ \ __| | | \ \/ / */ /* (| | )|_| |_| |> < */ /* Created: 2023/02/21 22:32:56 by djonker /'\_ _/`\__|\__,_/_/\_\ */ /* Updated: 2023/02/21 22:58:48 by djonker \___)=(___/ */ /* */ /* ************************************************************************** */ #include "../../tmp/libft.h" #include int main(void) { char *str; int a; str = "-2147483648"; a = -2147483648; if (ft_atoi(str) != a) return (1); return (0); }