mirror of https://github.com/ipxe/ipxe.git
19 lines
389 B
C
19 lines
389 B
C
#ifndef CORE_H
|
|
#define CORE_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 );
|
|
int wmove ( WINDOW *win, int y, int x );
|
|
|
|
#endif /* CURSES_H */
|