meta: rename term module to fx.term namespace
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
#ifndef _TTY_H_
|
||||
#define _TTY_H_
|
||||
|
||||
#include <fx/term/tty.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
#define TTY_TMPBUF_SIZE 128
|
||||
|
||||
struct fx_tty;
|
||||
|
||||
struct tty_format_buf {
|
||||
bool in_format;
|
||||
bool reset_vmode;
|
||||
char buf[TTY_TMPBUF_SIZE];
|
||||
unsigned int ptr;
|
||||
|
||||
struct fx_tty_vmode vmode;
|
||||
};
|
||||
|
||||
extern struct tty_format_buf *z__fx_tty_get_format_buf(struct fx_tty *tty);
|
||||
extern void z__fx_tty_putc(struct fx_tty *tty, char c);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user