c_piscine__offshore_mains/c00_ex04.c
2023-11-21 23:10:07 +04:00

21 lines
1009 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* 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;
}