/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_is_less.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rparodi +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/05/04 14:39:13 by rparodi #+# #+# */ /* Updated: 2024/05/28 14:12:59 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ #include "../../includes/ft_math.h" // char ft_is_less_equal(double nb1, double nb2) // { // if (nb1 <= nb2) // return (1); // else // return (0); // } // // char ft_is_less(double nb1, double nb2) // { // if (nb1 < nb2) // return (1); // else // return (0); // } //