/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_max.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: narnaud@student.42nice.fr +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/05/07 22:56:56 by narnaud@stude #+# #+# */ /* Updated: 2022/05/07 22:57:21 by narnaud@stude ### ########.fr */ /* */ /* ************************************************************************** */ #include "../libft.h" int ft_max(int a, int b) { if (a > b) return (a); else return (b); }