blob: 566f7f3414fc7fa23a8724a31bdb007601fbca0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef _MUCURSES_H
#define _MUCURSES_H
/** @file
*
* MuCurses core implementation specific header file
*
*/
#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 );
void _wcursback ( WINDOW *win );
#endif /* _MUCURSES_H */
|