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