diff options
Diffstat (limited to 'lib/libncurses/termcap.h')
-rw-r--r-- | lib/libncurses/termcap.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/lib/libncurses/termcap.h b/lib/libncurses/termcap.h new file mode 100644 index 0000000..05c86ca --- /dev/null +++ b/lib/libncurses/termcap.h @@ -0,0 +1,32 @@ + + +#ifndef _TERMCAP_H +#define _TERMCAP_H 1 + +#ifdef __cplusplus +extern "C" +{ +#endif /* __cplusplus */ + +#include <sys/cdefs.h> + +extern char PC; +extern char *UP; +extern char *BC; +extern short ospeed; + +extern int tgetent __P((char *, const char *)); +extern int tgetflag __P((const char *)); +extern int tgetnum __P((const char *)); +extern char *tgetstr __P((const char *, char **)); + +extern int tputs __P((const char *, int, int (*)(int))); + +extern char *tgoto __P((const char *, int, int)); +extern char *tparam __P((const char *, char *, int, ...)); + +#ifdef __cplusplus +} +#endif + +#endif /* _TERMCAP_H */ |