/* ************************************************************************** */ /* */ /* :::::::: */ /* ft_max.c :+: :+: */ /* +:+ */ /* By: djonker +#+ */ /* +#+ */ /* Created: 2021/02/08 04:26:11 by djonker #+# #+# */ /* Updated: 2023/10/18 16:59:57 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ #include "../libft.h" int ft_max(int a, int b) { if (a > b) return (a); return (b); }