您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516171819
  1. #ifndef CORE_H
  2. #define CORE_H
  3. /** @file
  4. *
  5. * MuCurses core implementation specific header file
  6. *
  7. */
  8. #define WRAP 0
  9. #define NOWRAP 1
  10. void _wputch ( WINDOW *win, chtype ch, int wrap );
  11. void _wputchstr ( WINDOW *win, const chtype *chstr, int wrap, int n );
  12. void _wputstr ( WINDOW *win, const char *str, int wrap, int n );
  13. void _wcursback ( WINDOW *win );
  14. int wmove ( WINDOW *win, int y, int x );
  15. #endif /* CURSES_H */