]> Git Repo - uclibc-ng.git/blob - include/termcap.h
We already have tar.h, so might as well include cpio.h as well...
[uclibc-ng.git] / include / termcap.h
1
2 #ifndef _TERMCAP_H
3 #define _TERMCAP_H
4
5 #include <features.h>
6 #include <sys/types.h>
7
8 __BEGIN_DECLS
9
10 extern char PC;
11 extern char *UP;
12 extern char *BC;
13 extern int ospeed;
14
15 extern int tgetent __P((char *, const char *));
16 extern int tgetflag __P((const char *));
17 extern int tgetnum __P((const char *));
18 extern char *tgetstr __P((const char *, char **));
19
20 extern int tputs __P((const char *, int, int (*)(int)));
21 extern char *tgoto __P((const char *, int, int));
22
23 __END_DECLS
24
25 #endif /* _TERMCAP_H */
This page took 0.024024 seconds and 4 git commands to generate.