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