Module libc/ctype
libc/ctype
C11 <ctype.h> — character classification and conversion functions.
Functions
isalnum
function
fn(c : int) -> int
Parameters
| Name | Type | Notes |
|---|---|---|
c | int |
Returns: int
isalpha
function
fn(c : int) -> int
Parameters
| Name | Type | Notes |
|---|---|---|
c | int |
Returns: int
isblank
function
fn(c : int) -> int
Parameters
| Name | Type | Notes |
|---|---|---|
c | int |
Returns: int
iscntrl
function
fn(c : int) -> int
Parameters
| Name | Type | Notes |
|---|---|---|
c | int |
Returns: int
isdigit
function
fn(c : int) -> int
Parameters
| Name | Type | Notes |
|---|---|---|
c | int |
Returns: int
isgraph
function
fn(c : int) -> int
Parameters
| Name | Type | Notes |
|---|---|---|
c | int |
Returns: int
islower
function
fn(c : int) -> int
Parameters
| Name | Type | Notes |
|---|---|---|
c | int |
Returns: int
isprint
function
fn(c : int) -> int
Parameters
| Name | Type | Notes |
|---|---|---|
c | int |
Returns: int
ispunct
function
fn(c : int) -> int
Parameters
| Name | Type | Notes |
|---|---|---|
c | int |
Returns: int
isspace
function
fn(c : int) -> int
Parameters
| Name | Type | Notes |
|---|---|---|
c | int |
Returns: int
isupper
function
fn(c : int) -> int
Parameters
| Name | Type | Notes |
|---|---|---|
c | int |
Returns: int
isxdigit
function
fn(c : int) -> int
Parameters
| Name | Type | Notes |
|---|---|---|
c | int |
Returns: int
tolower
function
fn(c : int) -> int
Parameters
| Name | Type | Notes |
|---|---|---|
c | int |
Returns: int
toupper
function
fn(c : int) -> int
Parameters
| Name | Type | Notes |
|---|---|---|
c | int |
Returns: int