9#ifndef ZEPHYR_LIB_LIBC_MINIMAL_INCLUDE_CTYPE_H_
10#define ZEPHYR_LIB_LIBC_MINIMAL_INCLUDE_CTYPE_H_
18 return ((
'A' <= a) && (a <=
'Z'));
26 return ((
'a' <= c) && (c <=
'z'));
31 return ((c ==
' ') || (c ==
'\t'));
36 return ((c ==
' ') || ((
'\t' <= c) && (c <=
'\r')));
41 return ((
' ' < c) && (c <=
'~'));
46 return ((
' ' <= c) && (c <=
'~'));
51 return ((
'0' <= a) && (a <=
'9'));
56 return ((
'a' <= c) && (c <=
'z'));
68 return ((
'a' <= a) && (a <=
'f'));
73 return (chr >=
'A' && chr <=
'Z') ? (chr + 32) : (chr);
78 return ((chr >=
'a' && chr <=
'z') ? (chr - 32) : (chr));
93 return ((((
unsigned int)c) <= 31U) || (((
unsigned int)c) == 127U));
static int isxdigit(int a)
Definition ctype.h:59
static int isupper(int a)
Definition ctype.h:16
static int islower(int c)
Definition ctype.h:54
static int iscntrl(int c)
Definition ctype.h:91
static int isdigit(int a)
Definition ctype.h:49
static int isgraph(int c)
Definition ctype.h:39
static int isspace(int c)
Definition ctype.h:34
static int isblank(int c)
Definition ctype.h:29
static int isprint(int c)
Definition ctype.h:44
static int isalpha(int c)
Definition ctype.h:21
static int tolower(int chr)
Definition ctype.h:71
static int ispunct(int c)
Definition ctype.h:86
static int toupper(int chr)
Definition ctype.h:76
static int isalnum(int chr)
Definition ctype.h:81