-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_issmaller.c
21 lines (19 loc) · 995 Bytes
/
ft_issmaller.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_issmaller.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mle-roy <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2014/01/14 13:01:07 by mle-roy #+# #+# */
/* Updated: 2014/01/14 13:02:05 by mle-roy ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_issmaller(int a, int b)
{
if (a <= b)
return (a);
else
return (b);
}