Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

wininit.c 355B

1234567891011121314151617181920212223
  1. #include <curses.h>
  2. /** @file
  3. *
  4. * MuCurses initialisation functions
  5. *
  6. */
  7. /**
  8. * Initialise console environment
  9. *
  10. * @ret *win return pointer to stdscr
  11. */
  12. WINDOW *initscr ( void ) {
  13. /* determine console size */
  14. /* initialise screen */
  15. curscr->init( curscr );
  16. stdscr->height = LINES;
  17. stdscr->width = COLS;
  18. werase( stdscr );
  19. return stdscr;
  20. }