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