Files
42_INT_10_cube3d/libs/libft/testing/srcs/test_smaller.c
2022-05-04 14:38:34 +02:00

9 lines
93 B
C

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