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.
33
Commits
1
Branch
0
Tags
343 KiB
Tree:
1c676c8f2f
master
Branches
Tags
${ item.name }
Create tag
${ searchTerm }
Create branch
${ searchTerm }
from '1c676c8f2f'
${ noResults }
Minishell
/
libft
/
nbr
/
ft_max.c
11 lines
98 B
Raw
Normal View
History
fixes: vars display with longer name than value, max fct in libft
3 years ago
#
include
"../libft.h"
int
ft_max
(
int
a
,
int
b
)
{
if
(
a
>
b
)
return
(
a
)
;
else
return
(
b
)
;
}