GBDK 2020 Docs  4.5.0
API Documentation for GBDK 2020
ctype.h
Go to the documentation of this file.
1
4#ifndef _CTYPE_H
5#define _CTYPE_H
6
7#include <types.h>
8#include <stdbool.h>
9
13bool isalpha(char c);
14
18bool isupper(char c);
19
23bool islower(char c);
24
28bool isdigit(char c);
29
33bool isspace(char c);
34
38char toupper(char c);
39
43char tolower(char c);
44
45#endif /* _CTYPE_H */
char c
Definition: string.h:20
bool isalpha(char c)
bool isdigit(char c)
bool islower(char c)
bool isspace(char c)
bool isupper(char c)
char tolower(char c)
char toupper(char c)