qulogic/libgnt

Add a migration guide, based on GTK's.

2019-05-20, Elliott Sales de Andrade
d27f187aca34
Add a migration guide, based on GTK's.

This replaces ChangeLog.API. Much of the boilerplate text is from GTK,
though it's been modified to only contain information applicable to
this project.
#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;
}