[Krafton Jungle] PintOS 2.0.0
크래프톤 정글 PintOS
 
Loading...
Searching...
No Matches
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)
 

Function Documentation

◆ isalnum()

static int isalnum ( int  c)
inlinestatic
8{ return isalpha (c) || isdigit (c); }
static int isalpha(int c)
Definition: ctype.h:6
static int isdigit(int c)
Definition: ctype.h:7
Here is the call graph for this function:
Here is the caller graph for this function:

◆ isalpha()

static int isalpha ( int  c)
inlinestatic
6{ return islower (c) || isupper (c); }
static int islower(int c)
Definition: ctype.h:4
static int isupper(int c)
Definition: ctype.h:5
Here is the call graph for this function:
Here is the caller graph for this function:

◆ isascii()

static int isascii ( int  c)
inlinestatic
20{ return c >= 0 && c < 128; }

◆ isblank()

static int isblank ( int  c)
inlinestatic
16{ return c == ' ' || c == '\t'; }

◆ iscntrl()

static int iscntrl ( int  c)
inlinestatic
19{ return (c >= 0 && c < 32) || c == 127; }

◆ isdigit()

static int isdigit ( int  c)
inlinestatic
7{ return c >= '0' && c <= '9'; }
Here is the caller graph for this function:

◆ isgraph()

static int isgraph ( int  c)
inlinestatic
17{ return c > 32 && c < 127; }

◆ islower()

static int islower ( int  c)
inlinestatic
4{ return c >= 'a' && c <= 'z'; }
Here is the caller graph for this function:

◆ isprint()

static int isprint ( int  c)
inlinestatic
18{ return c >= 32 && c < 127; }
Here is the caller graph for this function:

◆ ispunct()

static int ispunct ( int  c)
inlinestatic
21 {
22 return isprint (c) && !isalnum (c) && !isspace (c);
23}
static int isalnum(int c)
Definition: ctype.h:8
static int isspace(int c)
Definition: ctype.h:12
static int isprint(int c)
Definition: ctype.h:18
Here is the call graph for this function:

◆ isspace()

static int isspace ( int  c)
inlinestatic
12 {
13 return (c == ' ' || c == '\f' || c == '\n'
14 || c == '\r' || c == '\t' || c == '\v');
15}
Here is the caller graph for this function:

◆ isupper()

static int isupper ( int  c)
inlinestatic
5{ return c >= 'A' && c <= 'Z'; }
Here is the caller graph for this function:

◆ isxdigit()

static int isxdigit ( int  c)
inlinestatic
9 {
10 return isdigit (c) || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F');
11}
Here is the call graph for this function:

◆ tolower()

static int tolower ( int  c)
inlinestatic
25{ return isupper (c) ? c - 'A' + 'a' : c; }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ toupper()

static int toupper ( int  c)
inlinestatic
26{ return islower (c) ? c - 'a' + 'A' : c; }
Here is the call graph for this function: