Files
42_INT_10_cube3d/libs/libft/srcs/ft_abs.c
2022-05-04 14:38:34 +02:00

21 lines
970 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_abs.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: pblagoje <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/05/04 14:13:33 by pblagoje #+# #+# */
/* Updated: 2022/05/04 14:13:41 by pblagoje ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_abs(int n)
{
if (n < 0)
n *= -1;
return (n);
}