libgnt/libgnt

000688c19dcd
Python 3.6's support ended on 2021-12-23

Testing Done:
compiled

Reviewed at https://reviews.imfreedom.org/r/1232/
#include <ncurses.h>
int main()
{
int ch;
initscr();
noecho();
cbreak();
refresh();
WINDOW *win = newpad(20, 30);
box(win, 0, 0);
prefresh(win, 0, 0, 0, 0, 19, 29);
doupdate();
while ((ch = getch())) {
printw("%d ", ch);
refresh();
}
endwin();
return 0;
}