-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_first_int_larger.c
More file actions
18 lines (16 loc) · 971 Bytes
/
Copy pathft_first_int_larger.c
File metadata and controls
18 lines (16 loc) · 971 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_first_int_larger.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jvarila <jvarila@student.hive.fi> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/01/09 15:02:10 by jvarila #+# #+# */
/* Updated: 2025/03/20 12:26:00 by jvarila ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_first_int_larger(int a, int b)
{
return (a > b);
}