19 lines
991 B
C
19 lines
991 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_abs.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: cchauvet <cchauvet@student.42angoulem +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2022/07/26 19:36:46 by cchauvet #+# #+# */
|
|
/* Updated: 2022/07/28 10:17:57 by cchauvet ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef FT_ABS_H
|
|
# define FT_ABS_H
|
|
|
|
# define ABS(Value) ((Value < 0) ? (-Value) : (Value))
|
|
|
|
#endif
|