/* ************************************************************************** */ /* */ /* :::::::: */ /* test11.c :+: :+: */ /* +:+ */ /* By: houtworm +#+ */ /* +#+ */ /* Created: 2023/02/21 02:01:57 by houtworm #+# #+# */ /* Updated: 2023/10/18 17:08:58 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ #include "../../tmp/libft.h" #include int main(void) { char *str; int a; str = "123 456"; a = 123; if (ft_atoi(str) != a) return (1); return (0); }