19 lines
987 B
C
19 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
|