qulogic/libgnt

Move PURPLE_AVAILABLE into libgnt.

2018-04-27, Elliott Sales de Andrade
dcd2cecb72e3
Move PURPLE_AVAILABLE into libgnt.

It's only relevant there.
#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;
}