forked from zeotrope/anicca
-
Notifications
You must be signed in to change notification settings - Fork 1
/
char.h
133 lines (125 loc) · 1.77 KB
/
char.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
#ifndef _CHAR_H
#define _CHAR_H
#define CBANG '!'
#define CDQOT '"'
#define CPOND '#'
#define CDOLR '$'
#define CPERC '%'
#define CAMPR '&'
#define CSQOT '\''
#define CLPAR '('
#define CRPAR ')'
#define CSTAR '*'
#define CPLUS '+'
#define CCOMA ','
#define CSUBT '-'
#define CDOT '.'
#define CFWSL '/'
#define CCOL ':'
#define CSCOL ';'
#define CLT '<'
#define CEQ '='
#define CGT '>'
#define CQUES '?'
#define CAT '@'
#define CSAMEL '['
#define CBKSL '\\'
#define CSAMER ']'
#define CPOW '^'
#define CUNDS '_'
#define CBTIK '`'
#define CFROM '{'
#define CMOD '|'
#define CAMND '}'
#define CTILDE '~'
#define CANAG 'A'
#define CPERM 'C'
#define CDRVT 'D'
#define CMEMI 'E'
#define CHYPR 'H'
#define CINCS 'I'
#define CLVLO 'L'
#define CMEMO 'M'
#define CTYLR 'T'
#define CALFA 'a'
#define CBOOL 'b'
#define CDRVF 'd'
#define CMEMB 'e'
#define CFIX 'f'
#define CIOTA 'i'
#define CCMPX 'j'
#define CCIRC 'o'
#define CPOLY 'p'
#define CPOLR 'r'
#define CTYLC 't'
#define CZERO '0'
#define CONE '1'
typedef enum {
CFIT = 1,
CDO,
CBASE,
CSPRS,
CMTRI,
CAPSE,
CAND,
COR,
CSTCH,
CNOT,
CEVEN,
COBLQ,
COBVR,
CCUT,
CFLR,
CALCL,
CCEIL,
CROLF,
CAGND,
CSUFX,
CLOG,
CTAKE,
CREV,
CDROP,
CNUB
} PUNCDOT;
typedef enum {
CFRGN = 129,
CFORM,
CABSE,
CRECR,
CSQRT,
CUNDR,
CSQR,
CDBL,
CLAMN,
CHALF,
CODD,
CGRDU,
CADVR,
CWORD,
CLTEQ,
CAGBL,
CGTEQ,
CATR,
CSECN,
CLVLA,
CSPRD,
CCAP,
CGRDD,
CACE,
CSTEP,
CPRIM,
CPRFC,
CSYMB,
CWTTY,
CUNIC,
CEXT,
CPOWR,
CEVOK,
CTAIL,
CTRAN,
CCURT,
CNEQ
} PUNCCOL;
#define CHOOK 254
#define CFORK 255
#endif