working on adding utf8

This commit is contained in:
2025-07-21 16:37:28 -07:00
parent 2992e41050
commit fcfd5131ec

View File

@@ -101,6 +101,14 @@ struct tart_cell {
char display;
};
#else
#ifdef TART_UTF8
struct tart_cell {
tart_byte foreground;
tart_byte background;
tart_byte style;
char[2] display;
};
#endif
struct tart_cell {
tart_byte foreground;
tart_byte background;