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