123456789101112131415161718192021222324 |
- #ifndef TERMINAL_H
- #define TERMINAL_H
- struct console_details {
- int posx, posy;
- int savedx, savedy;
- char ansi[20];
- int in_ansi;
- int fgcolor;
- int bgcolor;
- int status;
- };
- void console_init(struct console_details *cdp);
- void ansi_color(struct console_details *cdp, int color);
- const char *color_restore(struct console_details *cdp);
- void console_ansi(struct console_details *cdp, const char *ansi);
- int console_char(struct console_details *cdp, char ch);
- void console_string(struct console_details *cdp, const char *chars);
- void console_receive(struct console_details *cdp, const char *chars, int len);
- #endif
|