-
Notifications
You must be signed in to change notification settings - Fork 2
/
ft_abs_bonus.c
18 lines (17 loc) · 954 Bytes
/
ft_abs_bonus.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_abs_bonus.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: hbaddrul <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/09/28 15:45:40 by hbaddrul #+# #+# */
/* Updated: 2021/11/23 12:39:35 by hbaddrul ### ########.fr */
/* */
/* ************************************************************************** */
int ft_abs(int i)
{
if (i < 0)
return (-i);
return (i);
}