30 lines
1.0 KiB
C
30 lines
1.0 KiB
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;
|
|
}
|
|
|
|
void setUp(void)
|
|
{
|
|
}
|
|
|
|
void tearDown(void)
|
|
{
|
|
}
|
|
|