#include "libft.h" int ft_greater(int a, int b) { if (a < b) return (b); return (a); }