libgnt/libgnt

c037bea489ec
Move to using a gi-docgen release rather than git

Testing Done:
purged the subprojects directory and successfully built withe docs.

Reviewed at https://reviews.imfreedom.org/r/2259/
#include <ncurses.h>
int
main(void)
{
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;
}