c_piscine__offshore_mains/c00/ex04.c

30 lines
1.0 KiB
C
Raw Permalink Normal View History

2023-11-21 19:10:07 +00:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* c00_ex01.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: achubuko <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* 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)
{
}