libgnt/libgnt

e9f4e4f0cf13
Make sure the zip file of docs extracts to the expected name

Testing Done:
Ran locally and verified the zip file with unzip.

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