/* ************************************************************************** */ /* */ /* .--. _ */ /* test8.c |o_o || | */ /* |:_/ || |_ _ ___ __ */ /* By: houtworm // \ \ __| | | \ \/ / */ /* (| | )|_| |_| |> < */ /* Created: 2023/02/21 02:01:57 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ /* Updated: 2023/02/21 23:01:06 by djonker \___)=(___/ */ /* */ /* ************************************************************************** */ #include "../../tmp/libft.h" #include int main(void) { char *str; int a; str = "12345678a"; a = 12345678; if (ft_atoi(str) != a) return (1); return (0); }