Adding the start of math
This commit is contained in:
parent
93f734f5e9
commit
3ac78b4c7f
13 changed files with 628 additions and 0 deletions
29
math/sources/comparison/ft_is_greater.c
Normal file
29
math/sources/comparison/ft_is_greater.c
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* ft_is_greater.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: rparodi <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2024/05/04 14:29:09 by rparodi #+# #+# */
|
||||
/* Updated: 2024/05/28 14:13:23 by rparodi ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "../../includes/ft_math.h"
|
||||
|
||||
// char ft_is_greater_equal(double nb1, double nb2)
|
||||
// {
|
||||
// if (nb1 >= nb2)
|
||||
// return (1);
|
||||
// else
|
||||
// return (0);
|
||||
// }
|
||||
//
|
||||
// char ft_is_greater(double nb1, double nb2)
|
||||
// {
|
||||
// if (nb1 > nb2)
|
||||
// return (1);
|
||||
// else
|
||||
// return (0);
|
||||
// }
|
||||
Loading…
Add table
Add a link
Reference in a new issue