|
PostgreSQL Source Code git master
|

Go to the source code of this file.
Macros | |
| #define | PG_ISDIGIT 0x01 |
| #define | PG_ISALPHA 0x02 |
| #define | PG_ISALNUM (PG_ISDIGIT | PG_ISALPHA) |
| #define | PG_ISUPPER 0x04 |
| #define | PG_ISLOWER 0x08 |
| #define | PG_ISGRAPH 0x10 |
| #define | PG_ISPRINT 0x20 |
| #define | PG_ISPUNCT 0x40 |
| #define | PG_ISSPACE 0x80 |
Variables | |
| static const unsigned char | pg_char_properties [128] |
| #define PG_ISALNUM (PG_ISDIGIT | PG_ISALPHA) |
Definition at line 21 of file pg_locale_c.h.
| #define PG_ISALPHA 0x02 |
Definition at line 20 of file pg_locale_c.h.
| #define PG_ISDIGIT 0x01 |
Definition at line 19 of file pg_locale_c.h.
| #define PG_ISGRAPH 0x10 |
Definition at line 24 of file pg_locale_c.h.
| #define PG_ISLOWER 0x08 |
Definition at line 23 of file pg_locale_c.h.
| #define PG_ISPRINT 0x20 |
Definition at line 25 of file pg_locale_c.h.
| #define PG_ISPUNCT 0x40 |
Definition at line 26 of file pg_locale_c.h.
| #define PG_ISSPACE 0x80 |
Definition at line 27 of file pg_locale_c.h.
| #define PG_ISUPPER 0x04 |
Definition at line 22 of file pg_locale_c.h.
|
static |
Definition at line 29 of file pg_locale_c.h.
Referenced by pg_iswalnum(), pg_iswalpha(), pg_iswdigit(), pg_iswgraph(), pg_iswlower(), pg_iswprint(), pg_iswpunct(), pg_iswspace(), pg_iswupper(), pg_iswxdigit(), regc_wc_isalnum(), regc_wc_isalpha(), regc_wc_isdigit(), regc_wc_isgraph(), regc_wc_islower(), regc_wc_isprint(), regc_wc_ispunct(), regc_wc_isspace(), and regc_wc_isupper().