narnaud
3 years ago
5 changed files with 15 additions and 4 deletions
@ -0,0 +1,10 @@ |
|||||
|
#include "../libft.h" |
||||
|
|
||||
|
int ft_max(int a, int b) |
||||
|
{ |
||||
|
if (a > b) |
||||
|
return (a); |
||||
|
else |
||||
|
return(b); |
||||
|
} |
||||
|
|
Loading…
Reference in new issue