/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_abs.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* 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); }