libgnt/libgnt

Migrate to gi-docgen

2021-09-30, Gary Kramlich
cb37ee7c7a93
Migrate to gi-docgen

Testing Done:
built the docs and verified they were working as expected.

Reviewed at https://reviews.imfreedom.org/r/952/
#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;
}