This website works better with JavaScript.
Home
Explore
Help
Sign In
nicolas-arnaud
/
Minishell
Watch
1
Star
0
Fork
1
Code
Issues
Pull Requests
Projects
1
Releases
Wiki
Activity
27
Commits
1
Branch
0
Tags
343 KiB
C
97.7%
Makefile
2.3%
Tree:
8129d31bc8
Minishell
/
libft
/
nbr
/
ft_max.c
10 lines
98 B
Raw
Blame
History
#
include
"../libft.h"
int
ft_max
(
int
a
,
int
b
)
{
if
(
a
>
b
)
return
(
a
)
;
else
return
(
b
)
;
}
Reference in new issue