2006-06-08 17:23:37 +00:00
|
|
|
#ifndef CORE_H
|
|
|
|
|
#define CORE_H
|
|
|
|
|
|
2006-06-21 10:29:13 +00:00
|
|
|
/** @file
|
|
|
|
|
*
|
|
|
|
|
* MuCurses core implementation specific header file
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2006-06-08 17:23:37 +00:00
|
|
|
#define WRAP 0
|
|
|
|
|
#define NOWRAP 1
|
|
|
|
|
|
|
|
|
|
void _wputch ( WINDOW *win, chtype ch, int wrap );
|
|
|
|
|
void _wputchstr ( WINDOW *win, const chtype *chstr, int wrap, int n );
|
|
|
|
|
void _wputstr ( WINDOW *win, const char *str, int wrap, int n );
|
2006-06-28 11:48:40 +00:00
|
|
|
void _wcursback ( WINDOW *win );
|
2006-06-08 17:23:37 +00:00
|
|
|
int wmove ( WINDOW *win, int y, int x );
|
|
|
|
|
|
|
|
|
|
#endif /* CURSES_H */
|