9 lines
89 B
C
9 lines
89 B
C
#include "libft.h"
|
|
|
|
long int ft_labs(long int n)
|
|
{
|
|
if (n < 0)
|
|
n *= -1;
|
|
return (n);
|
|
}
|