add (terrible) support for auto window resizing

This commit is contained in:
Emile Clark-Boman 2025-09-12 00:17:48 +10:00
parent a90b99baa3
commit 373081a1b3
4 changed files with 94 additions and 90 deletions

View file

@ -15,6 +15,8 @@ enum crs_termmode {
TMODE_NORAW,
};
#define termsize(width, height) (width=COLS); (height=LINES)
int termmode(const enum crs_termmode mode);
void init_ncurses(void);