| 6680 | } |
| 6681 | |
| 6682 | staticfn char * |
| 6683 | string_for_env_opt(const char *optname, char *opts, boolean val_optional) |
| 6684 | { |
| 6685 | if (!go.opt_initial) { |
| 6686 | rejectoption(optname); |
| 6687 | return empty_optstr; |
| 6688 | } |
| 6689 | return string_for_opt(opts, val_optional); |
| 6690 | } |
| 6691 | |
| 6692 | staticfn void |
| 6693 | bad_negation(const char *optname, boolean with_parameter) |
no test coverage detected