CS318 - Pintos
Pintos source browser for JHU CS318 course
Functions
ctype.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

static int islower (int c)
 
static int isupper (int c)
 
static int isalpha (int c)
 
static int isdigit (int c)
 
static int isalnum (int c)
 
static int isxdigit (int c)
 
static int isspace (int c)
 
static int isblank (int c)
 
static int isgraph (int c)
 
static int isprint (int c)
 
static int iscntrl (int c)
 
static int isascii (int c)
 
static int ispunct (int c)
 
static int tolower (int c)
 
static int toupper (int c)
 lib/ctype.h More...
 

Function Documentation

◆ isalnum()

static int isalnum ( int  c)
inlinestatic

Definition at line 8 of file ctype.h.

References isalpha(), and isdigit().

Referenced by ispunct().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ isalpha()

static int isalpha ( int  c)
inlinestatic

Definition at line 6 of file ctype.h.

References islower(), and isupper().

Referenced by isalnum().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ isascii()

static int isascii ( int  c)
inlinestatic

Definition at line 20 of file ctype.h.

◆ isblank()

static int isblank ( int  c)
inlinestatic

Definition at line 16 of file ctype.h.

◆ iscntrl()

static int iscntrl ( int  c)
inlinestatic

Definition at line 19 of file ctype.h.

◆ isdigit()

static int isdigit ( int  c)
inlinestatic

Definition at line 7 of file ctype.h.

Referenced by atoi(), expand(), isalnum(), isxdigit(), main(), and parse_conversion().

Here is the caller graph for this function:

◆ isgraph()

static int isgraph ( int  c)
inlinestatic

Definition at line 17 of file ctype.h.

◆ islower()

static int islower ( int  c)
inlinestatic

Definition at line 4 of file ctype.h.

Referenced by isalpha(), and toupper().

Here is the caller graph for this function:

◆ isprint()

static int isprint ( int  c)
inlinestatic

Definition at line 18 of file ctype.h.

Referenced by hex_dump(), and ispunct().

Here is the caller graph for this function:

◆ ispunct()

static int ispunct ( int  c)
inlinestatic

Definition at line 21 of file ctype.h.

References isalnum(), isprint(), and isspace().

Referenced by expand().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ isspace()

static int isspace ( int  c)
inlinestatic

Definition at line 12 of file ctype.h.

Referenced by atoi(), descramble_ata_string(), and ispunct().

Here is the caller graph for this function:

◆ isupper()

static int isupper ( int  c)
inlinestatic

Definition at line 5 of file ctype.h.

Referenced by isalpha(), and tolower().

Here is the caller graph for this function:

◆ isxdigit()

static int isxdigit ( int  c)
inlinestatic

Definition at line 9 of file ctype.h.

References isdigit().

Here is the call graph for this function:

◆ tolower()

static int tolower ( int  c)
inlinestatic

Definition at line 25 of file ctype.h.

References isupper().

Referenced by keyboard_interrupt().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ toupper()

static int toupper ( int  c)
inlinestatic

lib/ctype.h

Definition at line 26 of file ctype.h.

References islower().

Referenced by main().

Here is the call graph for this function:
Here is the caller graph for this function: