18 lines
977 B
C
18 lines
977 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_abs.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: jhalford <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2016/08/08 14:45:15 by jhalford #+# #+# */
|
|
/* Updated: 2016/08/11 11:02:54 by jhalford ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef FT_ABS_H
|
|
# define FT_ABS_H
|
|
|
|
# define ABS(x) (((x) < 0) ? -(x) : (x))
|
|
|
|
#endif
|