minishell
ft_isupper.c
Go to the documentation of this file.
1
/* ************************************************************************** */
2
/* */
3
/* ::: :::::::: */
4
/* ft_isupper.c :+: :+: :+: */
5
/* +:+ +:+ +:+ */
6
/* By: kfujita <kfujita@student.42tokyo.jp> +#+ +:+ +#+ */
7
/* +#+#+#+#+#+ +#+ */
8
/* Created: 2022/04/23 23:03:42 by kfujita #+# #+# */
9
/* Updated: 2022/04/25 23:06:45 by kfujita ### ########.fr */
10
/* */
11
/* ************************************************************************** */
12
13
#include "
ft_is.h
"
14
15
int
ft_isupper
(
int
c)
16
{
17
return
(
'A'
<= c && c <=
'Z'
);
18
}
ft_is.h
ft_isupper
int ft_isupper(int c)
Definition:
ft_isupper.c:15
libft
ft_is
ft_isupper.c
Generated by
1.9.1