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