Home
last modified time | relevance | path

Searched refs:SYNBASE (Results 1 – 2 of 2) sorted by relevance

/dragonfly/bin/sh/pregenerated/
H A Dsyntax.c11 [SYNBASE + PEOF] = CEOF,
12 [SYNBASE + CTLESC] = CCTL,
13 [SYNBASE + CTLVAR] = CCTL,
21 [SYNBASE + '\n'] = CNL,
22 [SYNBASE + '\\'] = CBACK,
26 [SYNBASE + '$'] = CVAR,
28 [SYNBASE + '<'] = CSPCL,
29 [SYNBASE + '>'] = CSPCL,
30 [SYNBASE + '('] = CSPCL,
31 [SYNBASE + ')'] = CSPCL,
[all …]
H A Dsyntax.h34 #define SYNBASE (1 - CHAR_MIN) macro
35 #define PEOF -SYNBASE
38 #define BASESYNTAX (basesyntax + SYNBASE)
39 #define DQSYNTAX (dqsyntax + SYNBASE)
40 #define SQSYNTAX (sqsyntax + SYNBASE)
41 #define ARISYNTAX (arisyntax + SYNBASE)
45 #define is_alpha(c) ((is_type+SYNBASE)[(int)c] & (ISUPPER|ISLOWER))
46 #define is_name(c) ((is_type+SYNBASE)[(int)c] & (ISUPPER|ISLOWER|ISUNDER))
47 #define is_in_name(c) ((is_type+SYNBASE)[(int)c] & (ISUPPER|ISLOWER|ISUNDER|ISDIGIT))
48 #define is_special(c) ((is_type+SYNBASE)[(int)c] & (ISSPECL|ISDIGIT))