2023-01-08 14:29:30 +00:00
|
|
|
/* ctype.h: Character handling. */
|
2023-01-06 19:48:08 +00:00
|
|
|
|
2023-03-12 10:15:45 +00:00
|
|
|
// FIXME: Add function descriptions.
|
|
|
|
|
2023-01-06 19:48:08 +00:00
|
|
|
#ifndef _CTYPE_H
|
|
|
|
#define _CTYPE_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int isalnum(int c);
|
|
|
|
int isalpha(int c);
|
|
|
|
int isascii(int c);
|
|
|
|
int iscntrl(int c);
|
|
|
|
int isdigit(int c);
|
|
|
|
int isxdigit(int c);
|
|
|
|
int isspace(int c);
|
|
|
|
int ispunct(int c);
|
|
|
|
int isprint(int c);
|
|
|
|
int isgraph(int c);
|
|
|
|
int islower(int c);
|
|
|
|
int isupper(int c);
|
|
|
|
int isblank(int c);
|
|
|
|
int tolower(int c);
|
|
|
|
int toupper(int c);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|