/* ************************************************************************** */ /* */ /* .--. _ */ /* test4.c :+: :+: :+: */ /* |:_/ || |_ _ ___ __ */ /* By: houtworm // \ \ __| | | \ \/ / */ /* (| | )|_| |_| |> < */ /* Created: 2023/02/21 03:12:17 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ /* Updated: 2023/02/24 13:29:18 by houtworm ### ########.fr */ /* */ /* ************************************************************************** */ #include "../../tmp/libft.h" #include #include int main(void) { int rtrn; char *r; rtrn = 0; r = ft_itoa(12345); if (strncmp(r, "12345\0", 6)) rtrn = 1; return (rtrn); }