/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_is_negative.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cchauvet +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/07/14 14:14:39 by cchauvet #+# #+# */ /* Updated: 2022/07/14 14:51:31 by cchauvet ### ########.fr */ /* */ /* ************************************************************************** */ #include void ft_is_negative(int n) { char a; a = 'N'; if (n > 0) { a = 'P'; } write(1, &a, 1); }