Why wont this builded code work?
#include <curses.h>
void main(void)
{
WINDOW *my;
initscr();
cbreak();
my = newwin(12, 12, 12, 12);
waddstr(my, "argg!");
/* here, instead of adding a string it dosn't do * anything
*/
refresh();
endwin();
}
_________________________________________________________
DO YOU YAHOO!?
Get your free @yahoo.com address at http://mail.yahoo.com
- Re: New to ncurses question Canul Podkopayeva
- Re: New to ncurses question Henrik Nordstrom
