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

9 lines
93 B
C

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