/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_abs.h :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: gtertysh +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/11/05 22:32:24 by gtertysh #+# #+# */ /* Updated: 2016/11/05 22:34:24 by gtertysh ### ########.fr */ /* */ /* ************************************************************************** */ #ifndef FT_ABS_H # define FT_ABS_H # define ABS(Value) ((Value < 0) ? -Value : Value) #endif