| 3 |
- |
1 |
|
|
|
2 |
/* /usr/include/term.h */
|
|
|
3 |
|
|
|
4 |
|
|
|
5 |
typedef void TTY;
|
|
|
6 |
typedef void TERMTYPE;
|
|
|
7 |
typedef void TERMINAL;
|
|
|
8 |
|
|
|
9 |
|
|
|
10 |
int _nc_set_tty_mode(TTY *buf);
|
|
|
11 |
int _nc_get_tty_mode(TTY *buf);
|
|
|
12 |
int _nc_read_entry(char *a, char *b, TERMTYPE *c);
|
|
|
13 |
int _nc_read_file_entry (char *a, TERMTYPE *b);
|
|
|
14 |
int _nc_read_termtype (TERMTYPE *a, char *b, int c);
|
|
|
15 |
char* _nc_first_name(char *a);
|
|
|
16 |
int _nc_name_match(char *a, char *b, char *c);
|
|
|
17 |
|
|
|
18 |
|
|
|
19 |
TERMINAL* set_curterm(TERMINAL *t);
|
|
|
20 |
int del_curterm(TERMINAL *t);
|
|
|
21 |
|
|
|
22 |
|
|
|
23 |
int restartterm(char *a, int b, int *c);
|
|
|
24 |
int setupterm (char *a, int b, int *c);
|
|
|
25 |
char* tigetstr(char *a);
|
|
|
26 |
int putp(char *s);
|
|
|
27 |
int tigetflag(char *a);
|
|
|
28 |
int tigetnum(char *a);
|
|
|
29 |
|
|
|
30 |
|
|
|
31 |
char* tparm(char *s);
|
|
|
32 |
char* tparm_varargs(char *s);
|
|
|
33 |
|
|
|
34 |
|
|
|
35 |
char* tgetstr(char *s, void *a);
|
|
|
36 |
char* tgoto(char *s, int a, int b);
|
|
|
37 |
int tgetent(char *s, char *a);
|
|
|
38 |
int tgetflag(char *s);
|
|
|
39 |
int tgetnum(char *s);
|
|
|
40 |
int tputs(char *s, int a, void *f);
|