-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_abs.c
16 lines (15 loc) · 941 Bytes
/
ft_abs.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_abs.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ademenet <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/04/10 19:09:48 by ademenet #+# #+# */
/* Updated: 2016/04/10 19:09:59 by ademenet ### ########.fr */
/* */
/* ************************************************************************** */
int ft_abs(int x)
{
return (x < 0 ? -x : x);
}