| 63 | } |
| 64 | |
| 65 | string INIReader::MakeKey(const string& section, const string& name) |
| 66 | { |
| 67 | string key = section + "=" + name; |
| 68 | // Convert to lower case to make section/name lookups case-insensitive |
| 69 | std::transform(key.begin(), key.end(), key.begin(), ::tolower); |
| 70 | return key; |
| 71 | } |
| 72 | |
| 73 | int INIReader::ValueHandler(void* user, const char* section, const char* name, |
| 74 | const char* value) |
nothing calls this directly
no outgoing calls
no test coverage detected