meta: rename term module to fx.term namespace

This commit is contained in:
2026-05-02 14:37:43 +01:00
parent 274a48a845
commit b8cf2b379b
18 changed files with 0 additions and 0 deletions
+23
View File
@@ -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