/* ************************************************************************** */ /* */ /* :::::::: */ /* ft_min.c :+: :+: :+: */ /* +:+ */ /* By: djonker +#+ */ /* +#+ */ /* Created: 2021/02/08 04:26:11 by djonker #+# #+# */ /* Updated: 2023/02/07 00:40:40 by houtworm ### ########.fr */ /* */ /* ************************************************************************** */ #include "../libft.h" int ft_min(int a, int b) { if (a < b) return (a); return (b); }