Files
42_INT_01_libft/srcs/ft_greater.c
2021-07-23 17:13:15 +02:00

9 lines
93 B
C

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