-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_abs.c
18 lines (17 loc) · 970 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: rvandepu <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/05/30 23:50:29 by rvandepu #+# #+# */
/* Updated: 2024/05/30 23:51:21 by rvandepu ### ########.fr */
/* */
/* ************************************************************************** */
int ft_abs(int value)
{
if (value < 0)
return (-value);
return (value);
}