42/d08/ex03/ft_abs.h
2016-11-20 02:20:23 +02:00

18 lines
987 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_abs.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: gtertysh <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* 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