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
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18
Commits
1
Branch
0
Tags
343 KiB
C
97.7%
Makefile
2.3%
Tree:
fc34ef9dcc
master
Branches
Tags
${ item.name }
Create tag
${ searchTerm }
Create branch
${ searchTerm }
from 'fc34ef9dcc'
${ noResults }
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