|
Embedded Artistry libc
C Standard Library Support for Bare-metal Systems
|
#include <_types/_wchar_t.h>

Go to the source code of this file.
Macros | |
| #define | WEOF 0xffffffffU |
| #define | WCTYPE_ALNUM 1 |
| #define | WCTYPE_ALPHA 2 |
| #define | WCTYPE_BLANK 3 |
| #define | WCTYPE_CNTRL 4 |
| #define | WCTYPE_DIGIT 5 |
| #define | WCTYPE_GRAPH 6 |
| #define | WCTYPE_LOWER 7 |
| #define | WCTYPE_PRINT 8 |
| #define | WCTYPE_PUNCT 9 |
| #define | WCTYPE_SPACE 10 |
| #define | WCTYPE_UPPER 11 |
| #define | WCTYPE_XDIGIT 12 |
Typedefs | |
| typedef const int * | wctrans_t |
| typedef unsigned | wint_t |
| typedef unsigned long | wctype_t |
Functions | |
| int | iswalnum (wint_t) |
| int | iswalpha (wint_t) |
| int | iswblank (wint_t) |
| int | iswcntrl (wint_t) |
| int | iswctype (wint_t, wctype_t) |
| int | iswdigit (wint_t) |
| int | iswgraph (wint_t) |
| int | iswlower (wint_t) |
| int | iswprint (wint_t) |
| int | iswpunct (wint_t) |
| int | iswspace (wint_t) |
| int | iswupper (wint_t) |
| int | iswxdigit (wint_t) |
| wint_t | towctrans (wint_t, wctrans_t) |
| wint_t | towlower (wint_t) |
| wint_t | towupper (wint_t) |
| wctrans_t | wctrans (const char *) |
| wctype_t | wctype (const char *) |
| int iswalnum | ( | wint_t | ) |
Definition at line 3 of file iswalnum.c.
References iswalpha(), and iswdigit().
Referenced by iswctype().

| int iswalpha | ( | wint_t | ) |
Definition at line 7 of file iswalpha.c.
References table.
Referenced by __towcase(), iswalnum(), and iswctype().

| int iswblank | ( | wint_t | ) |
Definition at line 4 of file iswblank.c.
References isblank().
Referenced by iswctype().

| int iswcntrl | ( | wint_t | ) |
Definition at line 3 of file iswcntrl.c.
Referenced by iswctype().

Definition at line 4 of file iswctype.c.
References iswalnum(), iswalpha(), iswblank(), iswcntrl(), iswdigit(), iswgraph(), iswlower(), iswprint(), iswpunct(), iswspace(), iswupper(), iswxdigit(), WCTYPE_ALNUM, WCTYPE_ALPHA, WCTYPE_BLANK, WCTYPE_CNTRL, WCTYPE_DIGIT, WCTYPE_GRAPH, WCTYPE_LOWER, WCTYPE_PRINT, WCTYPE_PUNCT, WCTYPE_SPACE, WCTYPE_UPPER, and WCTYPE_XDIGIT.
| int iswdigit | ( | wint_t | ) |
Definition at line 3 of file iswdigit.c.
Referenced by iswalnum(), and iswctype().

| int iswgraph | ( | wint_t | ) |
Definition at line 3 of file iswgraph.c.
References iswprint(), and iswspace().
Referenced by iswctype().

| int iswlower | ( | wint_t | ) |
Definition at line 3 of file iswlower.c.
References towupper().
Referenced by iswctype().

| int iswprint | ( | wint_t | ) |
Definition at line 10 of file iswprint.c.
Referenced by iswctype(), and iswgraph().

| int iswpunct | ( | wint_t | ) |
Definition at line 7 of file iswpunct.c.
References table.
Referenced by iswctype().

| int iswspace | ( | wint_t | ) |
Definition at line 8 of file iswspace.c.
References wcschr().
Referenced by iswctype(), and iswgraph().

| int iswupper | ( | wint_t | ) |
Definition at line 3 of file iswupper.c.
References towlower().
Referenced by iswctype().

| int iswxdigit | ( | wint_t | ) |
Definition at line 3 of file iswxdigit.c.
Referenced by iswctype().

Definition at line 4 of file towlower.c.
References __towcase(), and tolower().
Referenced by iswupper(), and towctrans().

Definition at line 4 of file towupper.c.
References __towcase(), and toupper().
Referenced by iswlower(), and towctrans().

| wctrans_t wctrans | ( | const char * | ) |
Definition at line 4 of file wctrans.c.
References strcmp().
| wctype_t wctype | ( | const char * | ) |
Definition at line 4 of file wctype.c.
References strcmp().