summaryrefslogtreecommitdiff
path: root/src/byte_class.h
blob: 0ccfbdfe07a384ab7a76b9bf7372d66862eb8d73 (plain)
1
2
3
4
5
6
7
8
9
10
#define BC_RGLR 0 /* regular character */
#define BC_WSPC 1 /* character is whitespace */
#define BC_EOLM (1<<1) /* character signifies end of line */
#define BC_OCTL (1<<2) /* character is octal */
#define BC_DCML (1<<3) /* character is decimal */
#define BC_HEXL (1<<4) /* character is hexadecimal */
#define BC_DELM (1<<5) /* character is a delimiter */
#define BC_CMNT (1<<6) /* character is a comment */

const uint8_t *bclass;