blob: 14492cd655d8503eb91896a512e163726d039993 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_abs.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/04 03:31:16 by cacharle #+# #+# */
/* Updated: 2020/02/04 03:32:54 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_abs(int i)
{
return (i < 0 ? -i : i);
}
|