Search:
GitHub Login
Preferences
My Notifications
Tickets
Wiki
GitHub
Timeline
Roadmap
Ticket Reports
Search
Context Navigation
Back to Ticket #56873
Ticket #56873
: vbel-rh.c
File vbel-rh.c,
198 bytes
(added by
LiamFry
,
6 years ago
)
Line
1
#include
<unistd.h>
2
#include
<ncurses.h>
3
4
int
main
(
int
argc
,
char
**
argv
)
5
{
6
initscr
();
7
bkgd
(
' '
|
A_REVERSE
);
refresh
();
8
getch
();
9
bkgd
(
' '
|
A_NORMAL
);
refresh
();
10
endwin
();
11
return
0
;
12
}
Download in other formats:
Original Format