9 lines
93 B
C
9 lines
93 B
C
#include "libft.h"
|
|
|
|
int ft_greater(int a, int b)
|
|
{
|
|
if (a < b)
|
|
return (b);
|
|
return (a);
|
|
}
|