mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-27 08:39:28 +08:00
6783b2372e
spacing. Also adds space for one-line comments.
30 lines
497 B
C
30 lines
497 B
C
#ifndef __DEFLEX_H__
|
|
#define __DEFLEX_H__
|
|
|
|
/* rememder !!!! */
|
|
#define LASTNUM 19
|
|
|
|
#define LATWORD 1
|
|
#define NONLATINWORD 2
|
|
#define UWORD 3
|
|
#define EMAIL 4
|
|
#define FURL 5
|
|
#define HOST 6
|
|
#define FLOAT 7
|
|
#define FINT 8
|
|
#define PARTWORD 9
|
|
#define NONLATINPARTWORD 10
|
|
#define LATPARTWORD 11
|
|
#define SPACE 12
|
|
#define SYMTAG 13
|
|
#define HTTP 14
|
|
#define DEFISWORD 15
|
|
#define DEFISLATWORD 16
|
|
#define DEFISNONLATINWORD 17
|
|
#define URI 18
|
|
#define FILEPATH 19
|
|
|
|
extern const char *descr[];
|
|
|
|
#endif
|