qulogic/libgnt

Deprecate all *Priv structs.
release-2.x.y
2019-05-14, Elliott Sales de Andrade
ee2ed7d0e332
Deprecate all *Priv structs.
#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;
}