Name: Anonymous 2009-05-06 2:50
/PROG/ has decided to worktogether to make a telnet based multiplayerp
87a
atexit(curses_cleanup);
initscr();
cbreak();
noecho();
nonl();
keypad(stdscr, TRUE);
.
39a
#include <curses.h>
static void
curses_cleanup()
{
endwin();
}
.