10 lines
98 B

#include "../libft.h"
int ft_max(int a, int b)
{
if (a > b)
return (a);
else
return(b);
}