Skip to content

Commit e30c272

Browse files
committed
typo
1 parent c1057e2 commit e30c272

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

resetcur.c

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
// public domain
2-
#include <windows.h>
3-
4-
int main(void) {
5-
CONSOLE_CURSOR_INFO ConsoleCursorInfo;
6-
ConsoleCursorInfo.dwSize = 1; //bottom hairline
7-
ConsoleCursorInfo.bVisible = TRUE;
8-
HANDLE conout = GetStdHandle(STD_OUTPUT_HANDLE);
9-
10-
if (conout != INVALID_HANDLE_VALUE) {
11-
if (SetConsoleCursorInfo(conout, &ConsoleCursorInfo))
12-
return 0;
13-
}
14-
return 1;
1+
// public domain
2+
#include <windows.h>
3+
4+
int main(void) {
5+
CONSOLE_CURSOR_INFO ConsoleCursorInfo;
6+
ConsoleCursorInfo.dwSize = 1; //bottom hairline
7+
ConsoleCursorInfo.bVisible = TRUE;
8+
HANDLE conout = GetStdHandle(STD_OUTPUT_HANDLE);
9+
10+
if (conout != INVALID_HANDLE_VALUE) {
11+
if (SetConsoleCursorInfo(conout, &ConsoleCursorInfo))
12+
return 0;
13+
}
14+
return 1;
1515
}

0 commit comments

Comments
 (0)