You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
399 B
18 lines
399 B
#ifndef _TERMINAL_H
|
|
#define _TERMINAL_H
|
|
|
|
extern bool out_isatty;
|
|
|
|
void out_init(void);
|
|
void outbufputc(void);
|
|
void promptreturn(void);
|
|
void out_send(char *string);
|
|
void out_printf(char *fmt, char *s1, char *s2, char *s3,
|
|
char *s4, char *s5, char *s6,
|
|
char *s7, char *s8, char *s9, char *s10);
|
|
void term_clear(void);
|
|
void term_home(void);
|
|
void term_cleol(void);
|
|
void tcap_init(void);
|
|
|
|
#endif
|