minishell
ft_islower.c
Go to the documentation of this file.
1 /* ************************************************************************** */
2 /* */
3 /* ::: :::::::: */
4 /* ft_islower.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:02:59 by kfujita ### ########.fr */
10 /* */
11 /* ************************************************************************** */
12 
13 #include "ft_is.h"
14 
15 int ft_islower(int c)
16 {
17  return ('a' <= c && c <= 'z');
18 }
int ft_islower(int c)
Definition: ft_islower.c:15