Re: prompt when 25 lines..

1998-09-19 Thread Ken
On Thu, 17 Sep 1998, [ISO-8859-1] Torbjørn Kristoffersen wrote: { printf("hit enter for the next page..\n"); getchar(); } } but it didn't work, has anyone got a solution to my little problem? It isn't possible to say why it didn't work because you have not supplied

Alberta Economic Development - The Alberta Advantage.

1998-09-19 Thread mog345
Hi linux-c-programming, This is a one time mailing and will not be duplicated As a Canadian business person you have no

RE: prompt when 25 lines..

1998-09-19 Thread Dan Jue
On Sat, 19 Sep 1998, subbaraom wrote: On Thu, 17 Sep 1998, Glynn Clements wrote: - if(n==25 || n==50) - { - printf("hit enter for the next page..\n"); - getchar(); - } - } - - but it didn't work, has anyone got a solution to my little problem? - -In what way

New to ncurses question

1998-09-19 Thread Canul Podkopayeva
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(); }

Re: New to ncurses question

1998-09-19 Thread Henrik Nordstrom
Canul Podkopayeva wrote: 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 */