libft/srcs/ft_isupper.c

8 lines
No EOL
111 B
C

#include "libft.h"
int ft_isupper(int c)
{
if (c >= 'A' && c <= 'Z')
return (1);
return (0);
}