I'm creating a wrapper for menu.h and want to ensure that when a menu is displayed, the cursor is turned off, however I don't want to just do a
curs_set(0);
and potentially screw up some other ui that depends on a certain cursor setting...
TLDR: is there any way to find out the current setting of curs_set?