aboutsummaryrefslogtreecommitdiff
path: root/quantum/unicode.h
diff options
context:
space:
mode:
Diffstat (limited to 'quantum/unicode.h')
-rw-r--r--quantum/unicode.h128
1 files changed, 128 insertions, 0 deletions
diff --git a/quantum/unicode.h b/quantum/unicode.h
new file mode 100644
index 000000000..756ec8bc3
--- /dev/null
+++ b/quantum/unicode.h
@@ -0,0 +1,128 @@
1/*
2Copyright 2016 Jack Humbert <jack.humb@gmail.com>
3This program is free software: you can redistribute it and/or modify
4it under the terms of the GNU General Public License as published by
5the Free Software Foundation, either version 2 of the License, or
6(at your option) any later version.
7This program is distributed in the hope that it will be useful,
8but WITHOUT ANY WARRANTY; without even the implied warranty of
9MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10GNU General Public License for more details.
11You should have received a copy of the GNU General Public License
12along with this program. If not, see <http://www.gnu.org/licenses/>.
13*/
14
15#ifndef UNICODE_H
16#define UNICODE_H
17
18#include "quantum.h"
19#include <math.h>
20
21#define UC_BSPC UC(0x0008)
22
23#define UC_SPC UC(0x0020)
24
25#define UC_EXLM UC(0x0021)
26#define UC_DQUT UC(0x0022)
27#define UC_HASH UC(0x0023)
28#define UC_DLR UC(0x0024)
29#define UC_PERC UC(0x0025)
30#define UC_AMPR UC(0x0026)
31#define UC_QUOT UC(0x0027)
32#define UC_LPRN UC(0x0028)
33#define UC_RPRN UC(0x0029)
34#define UC_ASTR UC(0x002A)
35#define UC_PLUS UC(0x002B)
36#define UC_COMM UC(0x002C)
37#define UC_DASH UC(0x002D)
38#define UC_DOT UC(0x002E)
39#define UC_SLSH UC(0x002F)
40
41#define UC_0 UC(0x0030)
42#define UC_1 UC(0x0031)
43#define UC_2 UC(0x0032)
44#define UC_3 UC(0x0033)
45#define UC_4 UC(0x0034)
46#define UC_5 UC(0x0035)
47#define UC_6 UC(0x0036)
48#define UC_7 UC(0x0037)
49#define UC_8 UC(0x0038)
50#define UC_9 UC(0x0039)
51
52#define UC_COLN UC(0x003A)
53#define UC_SCLN UC(0x003B)
54#define UC_LT UC(0x003C)
55#define UC_EQL UC(0x003D)
56#define UC_GT UC(0x003E)
57#define UC_QUES UC(0x003F)
58#define UC_AT UC(0x0040)
59
60#define UC_A UC(0x0041)
61#define UC_B UC(0x0042)
62#define UC_C UC(0x0043)
63#define UC_D UC(0x0044)
64#define UC_E UC(0x0045)
65#define UC_F UC(0x0046)
66#define UC_G UC(0x0047)
67#define UC_H UC(0x0048)
68#define UC_I UC(0x0049)
69#define UC_J UC(0x004A)
70#define UC_K UC(0x004B)
71#define UC_L UC(0x004C)
72#define UC_M UC(0x004D)
73#define UC_N UC(0x004E)
74#define UC_O UC(0x004F)
75#define UC_P UC(0x0050)
76#define UC_Q UC(0x0051)
77#define UC_R UC(0x0052)
78#define UC_S UC(0x0053)
79#define UC_T UC(0x0054)
80#define UC_U UC(0x0055)
81#define UC_V UC(0x0056)
82#define UC_W UC(0x0057)
83#define UC_X UC(0x0058)
84#define UC_Y UC(0x0059)
85#define UC_Z UC(0x005A)
86
87#define UC_LBRC UC(0x005B)
88#define UC_BSLS UC(0x005C)
89#define UC_RBRC UC(0x005D)
90#define UC_CIRM UC(0x005E)
91#define UC_UNDR UC(0x005F)
92
93#define UC_GRV UC(0x0060)
94
95#define UC_a UC(0x0061)
96#define UC_b UC(0x0062)
97#define UC_c UC(0x0063)
98#define UC_d UC(0x0064)
99#define UC_e UC(0x0065)
100#define UC_f UC(0x0066)
101#define UC_g UC(0x0067)
102#define UC_h UC(0x0068)
103#define UC_i UC(0x0069)
104#define UC_j UC(0x006A)
105#define UC_k UC(0x006B)
106#define UC_l UC(0x006C)
107#define UC_m UC(0x006D)
108#define UC_n UC(0x006E)
109#define UC_o UC(0x006F)
110#define UC_p UC(0x0070)
111#define UC_q UC(0x0071)
112#define UC_r UC(0x0072)
113#define UC_s UC(0x0073)
114#define UC_t UC(0x0074)
115#define UC_u UC(0x0075)
116#define UC_v UC(0x0076)
117#define UC_w UC(0x0077)
118#define UC_x UC(0x0078)
119#define UC_y UC(0x0079)
120#define UC_z UC(0x007A)
121
122#define UC_LCBR UC(0x007B)
123#define UC_PIPE UC(0x007C)
124#define UC_RCBR UC(0x007D)
125#define UC_TILD UC(0x007E)
126#define UC_DEL UC(0x007F)
127
128#endif \ No newline at end of file