Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

mucurses.h 596B

1234567891011121314151617181920212223
  1. #ifndef _MUCURSES_H
  2. #define _MUCURSES_H
  3. /** @file
  4. *
  5. * MuCurses core implementation specific header file
  6. *
  7. */
  8. FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
  9. #define WRAP 0
  10. #define NOWRAP 1
  11. extern SCREEN _ansi_screen;
  12. extern void _wputch ( WINDOW *win, chtype ch, int wrap ) __nonnull;
  13. extern void _wputc ( WINDOW *win, char c, int wrap ) __nonnull;
  14. extern void _wputchstr ( WINDOW *win, const chtype *chstr, int wrap, int n ) __nonnull;
  15. extern void _wputstr ( WINDOW *win, const char *str, int wrap, int n ) __nonnull;
  16. extern void _wcursback ( WINDOW *win ) __nonnull;
  17. #endif /* _MUCURSES_H */