26 lines
1012 B
C
26 lines
1012 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_is_negative.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: cchauvet <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2022/07/14 14:14:39 by cchauvet #+# #+# */
|
|
/* Updated: 2022/07/16 10:38:55 by cchauvet ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include <unistd.h>
|
|
|
|
void ft_is_negative(int n)
|
|
{
|
|
char a;
|
|
|
|
a = 'N';
|
|
if (n >= 0)
|
|
{
|
|
a = 'P';
|
|
}
|
|
write(1, &a, 1);
|
|
}
|