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

9 lines
93 B
C

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