-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_abs.c
More file actions
25 lines (23 loc) · 1 KB
/
ft_abs.c
File metadata and controls
25 lines (23 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_abs.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lbiasuz <lbiasuz@student.42sp.org.br> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/01/30 12:15:15 by lbiasuz #+# #+# */
/* Updated: 2023/01/31 09:46:23 by lbiasuz ### ########.fr */
/* */
/* ************************************************************************** */
int ft_abs(int n)
{
if (n < 0)
return (n * -1);
return (n);
}
long ft_absl(long n)
{
if (n < 0)
return (n * -1);
return (n);
}