/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* c00_ex01.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: achubuko +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/11/18 20:31:16 by achubuko #+# #+# */ /* Updated: 2023/11/18 22:37:36 by achubuko ### ########.fr */ /* */ /* ************************************************************************** */ void ft_is_negative(int); int main(void) { ft_is_negative(1); ft_is_negative(-1); ft_is_negative(0); return 0; } void setUp(void) { } void tearDown(void) { }