Numworks Epsilon  1.4.1
Graphing Calculator Operating System
ctype.h
Go to the documentation of this file.
1 #ifndef LIBA_CTYPE_H
2 #define LIBA_CTYPE_H
3 
4 int isupper(int c);
5 int isxdigit(int c);
6 int isdigit(int c);
7 int tolower(int c);
8 
9 #endif
c(generic_all_nodes)
int isxdigit(int c)
Definition: ctype.c:7
int isdigit(int c)
Definition: ctype.c:11
int isupper(int c)
Definition: ctype.c:3
int tolower(int c)
Definition: ctype.c:15