-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_abs.c
18 lines (17 loc) · 978 Bytes
/
ft_abs.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_abs.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dbrandao <dbrandao@student.42sp.org.br> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/10/27 17:56:21 by dbrandao #+# #+# */
/* Updated: 2022/10/27 17:56:26 by dbrandao ### ########.fr */
/* */
/* ************************************************************************** */
int ft_abs(int num)
{
if (num < 0)
return (num * -1);
return (num);
}