This repository has been archived by the owner on Sep 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
u2ps_data.i
82 lines (65 loc) · 1.91 KB
/
u2ps_data.i
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
/* The actual type of fontvariants is char*[][], i.e. arbitrary-length
array of (pointers to) arbitrary-length arrays of strings.
Sadly C does not allow to initialize a structure like that statically,
even though it is totally possible. So instead, we use doubly-included
file (this one specifically) to build it.
Do NOT attempt to compile this file! Compile u2ps_data.c instead. */
defont(Courier,
"R:Courier",
"B:Courier-Bold",
"I:Courier-Oblique",
"O:Courier-BoldOblique" )
defont(FreeMono,
"R:FreeMono",
"B:FreeMonoBold",
"I:FreeMonoOblique",
"O:FreeMonoBoldOblique")
defont(DejaVu,
"R:DejaVuSansMono-Regular",
"B:DejaVuSansMono-Bold",
"I:DejaVuSansMono-Oblique",
"O:DejaVuSansMono-BoldOblique")
defont(EnvyCodeR,
"R:EnvyCodeR",
"B:EnvyCodeRBold",
"I:EnvyCodeRItalic")
defont(Liberation,
"R:LiberationMono",
"B:LiberationSans-Bold",
"I:LiberationSans-Italic",
"O:LiberationSans-BoldItalic")
defont(FiraMono,
"R:FiraMono-Regular",
"B:FiraMono-Bold")
defont(RobotoMono,
"R:RobotoMono-Regular",
"B:RobotoMono-Bold",
"I:RobotoMono-Italic",
"O:RobotoMono-BoldItalic")
defont(Meslo,
"R:MesloLGM-Regular",
"B:MesloLGM-Bold",
"I:MesloLGM-Italic",
"O:MesloLGM-BoldItalic")
defont(Iosevka,
"R:Iosevka",
"B:Iosevka-Bold",
"I:Iosevka-Italic",
"O:Iosevka-BoldItalic")
defont(Unifont,
"R:UnifontMedium")
defont(ConsolaMono,
"R:ConsolaMono",
"B:ConsolaMono-Bold")
defont(Sawarabi,
"C:SawarabiGothic-Medium")
defont(Kochi,
"R:Kochi-Mincho",
"C:Kochi-Mincho")
defont(Tlwg,
"R:TlwgMono",
"B:TlwgMono-Bold",
"I:TlwgMono-Oblique",
"O:TlwgMono-BoldOblique",
"T:TlwgMono")
/* vim: set ft=c: */