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