Go to the source code of this file.
◆ CHAR_CR
◆ CHAR_FF
◆ CHAR_HTAB
◆ CHAR_LF
◆ CHAR_VTAB
◆ CHAR_WS
◆ ft_isalnum()
Definition at line 15 of file ft_isalnum.c.
17 return ((
'a' <= c && c <=
'z') || (
'A' <= c && c <=
'Z')
18 || (
'0' <= c && c <=
'9'));
◆ ft_isalpha()
Definition at line 15 of file ft_isalpha.c.
17 return ((
'a' <= c && c <=
'z') || (
'A' <= c && c <=
'Z'));
◆ ft_isascii()
Definition at line 15 of file ft_isascii.c.
17 return (0x00 <= c && c <= 0x7F);
◆ ft_isdigit()
Definition at line 15 of file ft_isdigit.c.
17 return (
'0' <= c && c <=
'9');
◆ ft_islower()
Definition at line 15 of file ft_islower.c.
17 return (
'a' <= c && c <=
'z');
◆ ft_isprint()
Definition at line 15 of file ft_isprint.c.
17 return (0x20 <= c && c <= 0x7E);
◆ ft_isspace()
◆ ft_isspcornil()
| int ft_isspcornil |
( |
int |
c | ) |
|
◆ ft_isupper()
Definition at line 15 of file ft_isupper.c.
17 return (
'A' <= c && c <=
'Z');