#ifndef _CURSETREE_TERM_H #define _CURSETREE_TERM_H #include #include "_ct_shared.h" struct ct_term { int fd; pos cols; pos rows; struct termios termios0; struct termios termios; }; int stashterm(struct ct_term **const term); void resetterm(struct ct_term *const term); int termsize(struct ct_term *const term); #endif /* _CURSETREE_TERM_H */