SyterKit 0.4.0.x
SyterKit is a bare-metal framework
Loading...
Searching...
No Matches
ctype.h
Go to the documentation of this file.
1/* SPDX-License-Identifier: GPL-2.0+ */
2
3#ifndef __CTYPE_H__
4#define __CTYPE_H__
5
6#ifdef __cplusplus
7extern "C" {
8#endif// __cplusplus
9
16int isalnum(int c);
17
24int isalpha(int c);
25
32int isascii(int c);
33
40int isblank(int c);
41
48int iscntrl(int c);
49
56int isdigit(int c);
57
64int isgraph(int c);
65
72int islower(int c);
73
80int isprint(int c);
81
88int ispunct(int c);
89
96int isspace(int c);
97
104int isupper(int c);
105
112int isxdigit(int c);
113
120int toascii(int c);
121
128int tolower(int c);
129
136int toupper(int c);
137
138#ifdef __cplusplus
139}
140#endif// __cplusplus
141
142#endif /* __CTYPE_H__ */
int iscntrl(int c)
Check if the given character is a control character.
Definition ctype.c:25
int isalpha(int c)
Check if the given character is alphabetic.
Definition ctype.c:9
int isdigit(int c)
Check if the given character is a digit.
Definition ctype.c:29
int isgraph(int c)
Check if the given character is printable and not a space.
Definition ctype.c:33
int isspace(int c)
Check if the given character is a whitespace character.
Definition ctype.c:50
int islower(int c)
Check if the given character is a lowercase alphabetic character.
Definition ctype.c:37
int isprint(int c)
Check if the given character is a printable character (including spaces).
Definition ctype.c:42
int toupper(int c)
Convert the given character to uppercase.
Definition ctype.c:72
int tolower(int c)
Convert the given character to lowercase.
Definition ctype.c:66
int isupper(int c)
Check if the given character is an uppercase alphabetic character.
Definition ctype.c:54
int isxdigit(int c)
Check if the given character is a hexadecimal digit.
Definition ctype.c:58
int isalnum(int c)
Check if the given character is alphanumeric.
Definition ctype.c:21
int isascii(int c)
Check if the given character is a valid ASCII character.
Definition ctype.c:13
int toascii(int c)
Convert the given character to its ASCII equivalent.
Definition ctype.c:62
int isblank(int c)
Check if the given character is a blank space.
Definition ctype.c:17
int ispunct(int c)
Check if the given character is a punctuation character.
Definition ctype.c:46