Name: Anonymous 2007-08-23 12:29 ID:PxDvWqYx
One True Brace style is fucking shit. Discuss.
void init_ncurses () {
// set up our display. I forget what it all means already.
initscr(); cbreak(); noecho(); nodelay(stdscr, TRUE);
clearok(stdscr, TRUE);
leaveok(stdscr, TRUE);
nonl();
intrflush(stdscr, FALSE);
keypad(stdscr, TRUE);
curs_set(0);}