We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4379e3e commit ba1fcb2Copy full SHA for ba1fcb2
Fonts/Straight/straight.h
@@ -94,16 +94,19 @@ class Straight : public Fonts
94
}
95
*/
96
97
- /*
+
98
char **H()
99
{
100
char **character = getCharGrid();
101
102
//Enter the character grid in ROWS X COLS
103
+ character[1][0]=character[1][3]='|';
104
+ character[2][0]=character[2][3]='|';
105
+ character[1][1]=character[1][2]='_';
106
107
return character;
108
- */
109
110
111
char **I()
112
example.cpp
@@ -6,6 +6,6 @@ using namespace ascii;
6
int main()
7
8
Ascii a = Ascii(straight);
9
- a.print("r");
+ a.print("H");
10
return 0;
11
0 commit comments