| 168 | } |
| 169 | |
| 170 | void Options_SetInt(const char* keyRaw, int value) { |
| 171 | cc_string str; char strBuffer[STRING_INT_CHARS]; |
| 172 | String_InitArray(str, strBuffer); |
| 173 | String_AppendInt(&str, value); |
| 174 | Options_Set(keyRaw, &str); |
| 175 | } |
| 176 | |
| 177 | void Options_Set(const char* keyRaw, const cc_string* value) { |
| 178 | cc_string key = String_FromReadonly(keyRaw); |
no test coverage detected