Files
42_INT_01_libft/srcs/ft_labs.c
2026-05-10 21:32:30 +02:00

15 lines
187 B
C

#include "libft.h"
/**
* returns the absolute value of a long int number
*/
long int ft_labs(long int n)
{
if (n <= 0)
n *= -1;
else if (n == 0)
n = 0; // for -0
return (n);
}