-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_abs.c
19 lines (18 loc) · 967 Bytes
/
ft_abs.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_abs.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jsprouts <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/09/25 19:59:28 by jsprouts #+# #+# */
/* Updated: 2019/09/25 20:01:00 by jsprouts ### ########.fr */
/* */
/* ************************************************************************** */
int ft_abs(int nb)
{
if (nb >= 0)
return (nb);
else
return (-nb);
}