SSBM Decomp
|
#include <platform.h>
Go to the source code of this file.
Macros | |
#define | EOF -1L |
#define | __control_char 0x01 |
#define | __motion_char 0x02 |
#define | __space_char 0x04 |
#define | __punctuation 0x08 |
#define | __digit 0x10 |
#define | __hex_digit 0x20 |
#define | __lower_case 0x40 |
#define | __upper_case 0x80 |
#define | __letter (__lower_case | __upper_case) |
#define | __alphanumeric (__letter | __digit) |
#define | __graphic (__alphanumeric | __punctuation) |
#define | __printable (__graphic | __space_char) |
#define | __whitespace (__motion_char | __space_char) |
#define | __control (__motion_char | __control_char) |
#define | __zero_fill(c) ((int) (unsigned char) (c)) |
Functions | |
int | isalpha (int c) |
int | isdigit (int c) |
int | isspace (int c) |
int | isupper (int c) |
int | isxdigit (int c) |
int | toupper (int c) |
int | tolower (int c) |
Variables | |
const unsigned char | __ctype_map [] |
const unsigned char | __lower_map [] |
const unsigned char | __upper_map [] |
#define EOF -1L |
#define __control_char 0x01 |
#define __motion_char 0x02 |
#define __space_char 0x04 |
#define __punctuation 0x08 |
#define __digit 0x10 |
#define __hex_digit 0x20 |
#define __lower_case 0x40 |
#define __upper_case 0x80 |
#define __letter (__lower_case | __upper_case) |
#define __graphic (__alphanumeric | __punctuation) |
#define __printable (__graphic | __space_char) |
#define __whitespace (__motion_char | __space_char) |
#define __control (__motion_char | __control_char) |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
int toupper | ( | int | c | ) |
int tolower | ( | int | c | ) |
|
extern |
|
extern |
|
extern |