1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-28 01:35:32 +00:00
elinks/src/terminal/terminfo.h
2022-02-21 18:25:11 +01:00

23 lines
533 B
C

#ifndef EL__TERMINAL_TERMINFO_H
#define EL__TERMINAL_TERMINFO_H
#ifdef __cplusplus
extern "C" {
#endif
int terminfo_setupterm(char *term, int fildes);
const char *terminfo_clear_screen(void);
const char *terminfo_set_bold(int arg);
const char *terminfo_set_italics(int arg);
const char *terminfo_set_underline(int arg);
const char *terminfo_set_foreground(int arg);
const char *terminfo_set_background(int arg);
int terminfo_max_colors(void);
const char *terminfo_cursor_address(int y, int x);
#ifdef __cplusplus
}
#endif
#endif