libgnt/libgnt

Set the date for the 2.14.1 release
release-2.x.y
2021-02-04, Gary Kramlich
e53e6ee83424
Set the date for the 2.14.1 release
#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;
}