-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_max.c
16 lines (15 loc) · 984 Bytes
/
ft_max.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_max.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ylagtab <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/09/22 21:22:23 by ylagtab #+# #+# */
/* Updated: 2019/11/21 22:15:13 by ylagtab ### ########.fr */
/* */
/* ************************************************************************** */
int ft_max(unsigned long nbr1, unsigned long nbr2)
{
return (nbr1 > nbr2 ? nbr1 : nbr2);
}