feat: initial version
This commit is contained in:
parent
5cad2db883
commit
6428ed06b0
16 changed files with 263 additions and 0 deletions
8
srcs/ft_isupper.c
Normal file
8
srcs/ft_isupper.c
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
#include "libft.h"
|
||||
|
||||
int ft_isupper(int c)
|
||||
{
|
||||
if (c >= 'A' && c <= 'Z')
|
||||
return (1);
|
||||
return (0);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue