-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathft_module.c
16 lines (15 loc) · 945 Bytes
/
ft_module.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_module.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: vbrazas <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/05/22 21:04:35 by vbrazas #+# #+# */
/* Updated: 2018/05/31 12:53:55 by vbrazas ### ########.fr */
/* */
/* ************************************************************************** */
int ft_module(int x)
{
return (x < 0 ? -x : x);
}