1package ansi
2
3// C1 control characters.
4//
5// These range from (0x80-0x9F) as defined in ISO 6429 (ECMA-48).
6// See: https://en.wikipedia.org/wiki/C0_and_C1_control_codes
7const (
8 // PAD is the padding character.
9 PAD = 0x80
10 // HOP is the high octet preset character.
11 HOP = 0x81
12 // BPH is the break permitted here character.
13 BPH = 0x82
14 // NBH is the no break here character.
15 NBH = 0x83
16 // IND is the index character.
17 IND = 0x84
18 // NEL is the next line character.
19 NEL = 0x85
20 // SSA is the start of selected area character.
21 SSA = 0x86
22 // ESA is the end of selected area character.
23 ESA = 0x87
24 // HTS is the horizontal tab set character.
25 HTS = 0x88
26 // HTJ is the horizontal tab with justification character.
27 HTJ = 0x89
28 // VTS is the vertical tab set character.
29 VTS = 0x8A
30 // PLD is the partial line forward character.
31 PLD = 0x8B
32 // PLU is the partial line backward character.
33 PLU = 0x8C
34 // RI is the reverse index character.
35 RI = 0x8D
36 // SS2 is the single shift 2 character.
37 SS2 = 0x8E
38 // SS3 is the single shift 3 character.
39 SS3 = 0x8F
40 // DCS is the device control string character.
41 DCS = 0x90
42 // PU1 is the private use 1 character.
43 PU1 = 0x91
44 // PU2 is the private use 2 character.
45 PU2 = 0x92
46 // STS is the set transmit state character.
47 STS = 0x93
48 // CCH is the cancel character.
49 CCH = 0x94
50 // MW is the message waiting character.
51 MW = 0x95
52 // SPA is the start of guarded area character.
53 SPA = 0x96
54 // EPA is the end of guarded area character.
55 EPA = 0x97
56 // SOS is the start of string character.
57 SOS = 0x98
58 // SGCI is the single graphic character introducer character.
59 SGCI = 0x99
60 // SCI is the single character introducer character.
61 SCI = 0x9A
62 // CSI is the control sequence introducer character.
63 CSI = 0x9B
64 // ST is the string terminator character.
65 ST = 0x9C
66 // OSC is the operating system command character.
67 OSC = 0x9D
68 // PM is the privacy message character.
69 PM = 0x9E
70 // APC is the application program command character.
71 APC = 0x9F
72)