| 839 | |
| 840 | |
| 841 | boolean |
| 842 | curses_menu_exists(winid wid) |
| 843 | { |
| 844 | if (get_menu(wid) != NULL) { |
| 845 | return TRUE; |
| 846 | } else { |
| 847 | return FALSE; |
| 848 | } |
| 849 | } |
| 850 | |
| 851 | /* Delete the menu associated with the given NetHack winid from memory */ |
| 852 |
no test coverage detected