MCPcopy Create free account
hub / github.com/AHXR/ghost / MakeKey

Method MakeKey

_src/server/INIReader.cpp:65–71  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

63}
64
65string 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
73int INIReader::ValueHandler(void* user, const char* section, const char* name,
74 const char* value)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected