| 152 | } |
| 153 | |
| 154 | mi_decl_nodiscard bool mi_option_is_enabled(mi_option_t option) { |
| 155 | return (mi_option_get(option) != 0); |
| 156 | } |
| 157 | |
| 158 | void mi_option_set_enabled(mi_option_t option, bool enable) { |
| 159 | mi_option_set(option, (enable ? 1 : 0)); |
no test coverage detected