mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
12 lines
311 B
C
12 lines
311 B
C
|
#ifndef EL__TERMINAL_TERMINFO_H
|
||
|
#define EL__TERMINAL_TERMINFO_H
|
||
|
|
||
|
int terminfo_setupterm(char *term, int fildes);
|
||
|
char *terminfo_set_bold(int arg);
|
||
|
char *terminfo_set_italics(int arg);
|
||
|
char *terminfo_set_underline(int arg);
|
||
|
char *terminfo_set_foreground(int arg);
|
||
|
char *terminfo_set_background(int arg);
|
||
|
|
||
|
#endif
|