-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_abs.c
20 lines (18 loc) · 971 Bytes
/
ft_abs.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_abs.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lenzo-pe <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/03/13 16:57:20 by lenzo-pe #+# #+# */
/* Updated: 2021/05/07 17:10:56 by lenzo-pe ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_math.h"
int ft_abs(int i)
{
if (i < 0)
i = -i;
return (i);
}