(UNDER CONSTRUCTION) fixed bad free + testing AXIS_X bifurcation

This commit is contained in:
Emile Clark-Boman 2025-09-16 18:46:01 +10:00
parent b16590fd5a
commit 5e99b09f8a
7 changed files with 92 additions and 46 deletions

View file

@ -29,15 +29,6 @@ WINDOW *new_window(const int x, const int y, const int width, const int height);
WINDOW *new_window_fs(void);
void destroy_window(WINDOW *);
// #define winpos(win, x, y) (x = winposx(win), y = winposy(win))
// #define winsize(win, width, height) \
// (width = winwidth(win), height = winheight(win))
// int winposx(WINDOW *const);
// int winposy(WINDOW *const);
// int winwidth(WINDOW *const);
// int winheight(WINDOW *const);
// struct ct_dims *windims(WINDOW *win);
int resizemv_window(WINDOW *const win, const int x, const int y,
const int width, const int height);