| 444 | } |
| 445 | |
| 446 | void sym_clear_all_valid(void) |
| 447 | { |
| 448 | struct symbol *sym; |
| 449 | int i; |
| 450 | |
| 451 | for_all_symbols(i, sym) |
| 452 | sym->flags &= ~SYMBOL_VALID; |
| 453 | conf_set_changed(true); |
| 454 | sym_calc_value(modules_sym); |
| 455 | } |
| 456 | |
| 457 | bool sym_tristate_within_range(struct symbol *sym, tristate val) |
| 458 | { |
no test coverage detected