#include "libft.h" int ft_sign_f(double i) { if (i < 0) return (-1); return (1); }