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