-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_sign.c
16 lines (15 loc) · 951 Bytes
/
ft_sign.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_sign.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: thakala <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/12/10 11:16:13 by thakala #+# #+# */
/* Updated: 2021/12/10 11:17:00 by thakala ### ########.fr */
/* */
/* ************************************************************************** */
char ft_sign(long value)
{
return (-(value < 0) | 0x1);
}