PostgreSQL Source Code git master
pg_locale_c.h File Reference
This graph shows which files directly or indirectly include this file:

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]
 

Macro Definition Documentation

◆ PG_ISALNUM

#define PG_ISALNUM   (PG_ISDIGIT | PG_ISALPHA)

Definition at line 21 of file pg_locale_c.h.

◆ PG_ISALPHA

#define PG_ISALPHA   0x02

Definition at line 20 of file pg_locale_c.h.

◆ PG_ISDIGIT

#define PG_ISDIGIT   0x01

Definition at line 19 of file pg_locale_c.h.

◆ PG_ISGRAPH

#define PG_ISGRAPH   0x10

Definition at line 24 of file pg_locale_c.h.

◆ PG_ISLOWER

#define PG_ISLOWER   0x08

Definition at line 23 of file pg_locale_c.h.

◆ PG_ISPRINT

#define PG_ISPRINT   0x20

Definition at line 25 of file pg_locale_c.h.

◆ PG_ISPUNCT

#define PG_ISPUNCT   0x40

Definition at line 26 of file pg_locale_c.h.

◆ PG_ISSPACE

#define PG_ISSPACE   0x80

Definition at line 27 of file pg_locale_c.h.

◆ PG_ISUPPER

#define PG_ISUPPER   0x04

Definition at line 22 of file pg_locale_c.h.

Variable Documentation

◆ pg_char_properties