| 175 | } |
| 176 | |
| 177 | void Options_Set(const char* keyRaw, const cc_string* value) { |
| 178 | cc_string key = String_FromReadonly(keyRaw); |
| 179 | Options_SetString(&key, value); |
| 180 | } |
| 181 | |
| 182 | void Options_SetString(const cc_string* key, const cc_string* value) { |
| 183 | if (!value || !value->length) { |
no test coverage detected