MentOS  0.8.0
The Mentoring Operating System
ctype.h
Go to the documentation of this file.
1 
6 #pragma once
7 
11 int isdigit(int c);
12 
16 int isalpha(int c);
17 
21 int iscntrl(int c);
22 
26 int isalnum(int c);
27 
31 int isxdigit(int c);
32 
36 int islower(int c);
37 
41 int isupper(int c);
42 
46 int tolower(int c);
47 
51 int toupper(int c);
52 
56 int isspace(int c);
int iscntrl(int c)
Check if the given value is a control character.
Definition: ctype.c:21
int isalpha(int c)
Check if the given value is a letter.
Definition: ctype.c:16
int isdigit(int c)
Check if the given value is a digit.
Definition: ctype.c:11
int isspace(int c)
Check if the given value is a whitespace.
Definition: ctype.c:64
int islower(int c)
Check if the given value is a lower case letter.
Definition: ctype.c:36
int toupper(int c)
Transforms the given value into an upper case letter.
Definition: ctype.c:55
int tolower(int c)
Transforms the given value into a lower case letter.
Definition: ctype.c:46
int isupper(int c)
Check if the given value is an upper case letter.
Definition: ctype.c:41
int isxdigit(int c)
Check if the given value is an hexadecimal digit.
Definition: ctype.c:31
int isalnum(int c)
Check if the given value is either a letter or a digit.
Definition: ctype.c:26