OSDN Git Service

Cleanup the toploevel makefile handing of shared libs. Add weak_alias
[uclinux-h8/uClibc.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 extern char PC;
9 extern char *UP;
10 extern char *BC;
11 extern int ospeed;
12
13 extern int tgetent __P((char *, const char *));
14 extern int tgetflag __P((const char *));
15 extern int tgetnum __P((const char *));
16 extern char *tgetstr __P((const char *, char **));
17
18 extern int tputs __P((const char *, int, int (*)(int)));
19 extern char *tgoto __P((const char *, int, int));
20
21 #endif /* _TERMCAP_H */