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
134
135
136
//! Special constants for things like drawing ascii art.

#[allow(missing_docs)]
pub mod acs {
  use pancurses::*;

  pub fn llcorner() -> chtype {
    ACS_LLCORNER()
  }
  pub fn lrcorner() -> chtype {
    ACS_LRCORNER()
  }
  pub fn ulcorner() -> chtype {
    ACS_ULCORNER()
  }
  pub fn urcorner() -> chtype {
    ACS_URCORNER()
  }
  pub fn btee() -> chtype {
    ACS_BTEE()
  }
  pub fn hline() -> chtype {
    ACS_HLINE()
  }
  pub fn ltee() -> chtype {
    ACS_LTEE()
  }
  pub fn plus() -> chtype {
    ACS_PLUS()
  }
  pub fn rtee() -> chtype {
    ACS_RTEE()
  }
  pub fn ttee() -> chtype {
    ACS_TTEE()
  }
  pub fn vline() -> chtype {
    ACS_VLINE()
  }
  pub fn s1() -> chtype {
    ACS_S1()
  }
  pub fn s9() -> chtype {
    ACS_S9()
  }
  pub fn bullet() -> chtype {
    ACS_BULLET()
  }
  pub fn ckboard() -> chtype {
    ACS_CKBOARD()
  }
  pub fn degree() -> chtype {
    ACS_DEGREE()
  }
  pub fn diamond() -> chtype {
    ACS_DIAMOND()
  }
  pub fn plminus() -> chtype {
    ACS_PLMINUS()
  }
  pub fn block() -> chtype {
    ACS_BLOCK()
  }
  pub fn board() -> chtype {
    ACS_BOARD()
  }
  pub fn darrow() -> chtype {
    ACS_DARROW()
  }
  pub fn lantern() -> chtype {
    ACS_LANTERN()
  }
  pub fn larrow() -> chtype {
    ACS_LARROW()
  }
  pub fn rarrow() -> chtype {
    ACS_RARROW()
  }
  pub fn uarrow() -> chtype {
    ACS_UARROW()
  }
  pub fn s3() -> chtype {
    ACS_S3()
  }
  pub fn s7() -> chtype {
    ACS_S7()
  }
  pub fn gequal() -> chtype {
    ACS_GEQUAL()
  }
  pub fn lequal() -> chtype {
    ACS_LEQUAL()
  }
  pub fn nequal() -> chtype {
    ACS_NEQUAL()
  }
  pub fn pi() -> chtype {
    ACS_PI()
  }
  pub fn sterling() -> chtype {
    ACS_STERLING()
  }
  pub fn bbss() -> chtype {
    ACS_BBSS()
  }
  pub fn bssb() -> chtype {
    ACS_BSSB()
  }
  pub fn sbbs() -> chtype {
    ACS_SBBS()
  }
  pub fn sbss() -> chtype {
    ACS_SBSS()
  }
  pub fn ssbb() -> chtype {
    ACS_SSBB()
  }
  pub fn ssbs() -> chtype {
    ACS_SSBS()
  }
  pub fn sssb() -> chtype {
    ACS_SSSB()
  }
  pub fn bsbs() -> chtype {
    ACS_BSBS()
  }
  pub fn bsss() -> chtype {
    ACS_BSSS()
  }
  pub fn sbsb() -> chtype {
    ACS_SBSB()
  }
  pub fn ssss() -> chtype {
    ACS_SSSS()
  }
}