Numworks Epsilon
1.4.1
Graphing Calculator Operating System
ctype.c
Go to the documentation of this file.
1
#include <
ctype.h
>
2
3
int
isupper
(
int
c
) {
4
return
(
c
>=
'A'
&&
c
<=
'Z'
);
5
}
6
7
int
isxdigit
(
int
c
) {
8
return
(
c
>=
'0'
&&
c
<=
'9'
) || (
c
>=
'A'
&& c <= 'F') || (c >=
'a'
&&
c
<=
'f'
);
9
}
10
11
int
isdigit
(
int
c
) {
12
return
(
c
>=
'0'
&&
c
<=
'9'
);
13
}
14
15
int
tolower
(
int
c
) {
16
return
isupper
(
c
) ?
'a'
+
c
-
'A'
:
c
;
17
}
isdigit
int isdigit(int c)
Definition:
ctype.c:11
ctype.h
c
c(generic_all_nodes)
isupper
int isupper(int c)
Definition:
ctype.c:3
tolower
int tolower(int c)
Definition:
ctype.c:15
isxdigit
int isxdigit(int c)
Definition:
ctype.c:7
epsilon
liba
src
ctype.c
Generated by
1.8.14