libft
ft_max.c
Go to the documentation of this file.
1 /* ************************************************************************** */
3 /* */
4 /* ::: :::::::: */
5 /* ft_max.c :+: :+: :+: */
6 /* +:+ +:+ +:+ */
7 /* By: unite <marvin@42.fr> +#+ +:+ +#+ */
8 /* +#+#+#+#+#+ +#+ */
9 /* Created: 2020/05/17 02:01:56 by unite #+# #+# */
10 /* Updated: 2020/07/16 02:59:35 by unite ### ########.fr */
11 /* */
12 /* ************************************************************************** */
13 
23 int ft_max(int a, int b)
24 {
25  return (a > b ? a : b);
26 }
ft_max
int ft_max(int a, int b)
Returns the maximum of two integer arguments.
Definition: ft_max.c:23