blob: 3b7a88fe5e6d85201d6dfe2107c3210d38eb62d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_isalpha.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/14 17:06:39 by rbousset #+# #+# */
/* Updated: 2020/02/14 17:06:39 by rbousset ### ########lyon.fr */
/* */
/* ************************************************************************** */
#include <libft.h>
t_bool
ft_isupper(int c)
{
if (c >= 65 && c <= 90)
return (TRUE);
return (FALSE);
}
t_bool
ft_islower(int c)
{
if (c >= 97 && c <= 122)
return (TRUE);
return (FALSE);
}
t_bool
ft_isalpha(int c)
{
if (ft_isupper(c) || ft_islower(c))
return (TRUE);
return (FALSE);
}
|