Files
42_INT_04_fdf/libftt/srcs/ft_greater.c
2021-07-24 11:57:54 +02:00

9 lines
93 B
C

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