9 lines
84 B
C
9 lines
84 B
C
#include "libft.h"
|
|
|
|
int ft_sign(int i)
|
|
{
|
|
if (i < 0)
|
|
return (-1);
|
|
return (1);
|
|
}
|