| 144 | } |
| 145 | |
| 146 | int Ini_GetInteger(const char *category, const char *key, int defaultValue, char *source) |
| 147 | { |
| 148 | char value[16]; |
| 149 | char buffer[16]; |
| 150 | |
| 151 | sprintf(value, "%d", defaultValue); |
| 152 | |
| 153 | Ini_GetString(category, key, value, buffer, 15, source); |
| 154 | return atoi(buffer); |
| 155 | } |
| 156 | |
| 157 | void Ini_SetString(const char *category, const char *key, const char *value, char *source) |
| 158 | { |
no test coverage detected