-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_is_sign.c
16 lines (15 loc) · 974 Bytes
/
ft_is_sign.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_is_sign.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jbadaire <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/19 15:43:14 by jbadaire #+# #+# */
/* Updated: 2023/11/19 15:45:48 by jbadaire ### ########.fr */
/* */
/* ************************************************************************** */
int ft_is_sign(int character)
{
return (character == '+' || character == '-');
}