mucurses.h
Go to the documentation of this file.00001 #ifndef _MUCURSES_H
00002 #define _MUCURSES_H
00003
00004
00005
00006
00007
00008
00009
00010 FILE_LICENCE ( GPL2_OR_LATER );
00011
00012 #define WRAP 0
00013 #define NOWRAP 1
00014
00015 extern SCREEN _ansi_screen;
00016
00017 extern void _wputch ( WINDOW *win, chtype ch, int wrap ) __nonnull;
00018 extern void _wputc ( WINDOW *win, char c, int wrap ) __nonnull;
00019 extern void _wputchstr ( WINDOW *win, const chtype *chstr, int wrap, int n ) __nonnull;
00020 extern void _wputstr ( WINDOW *win, const char *str, int wrap, int n ) __nonnull;
00021 extern void _wcursback ( WINDOW *win ) __nonnull;
00022
00023 #endif