Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
INIReader.h
✓ #include <INIReader.h>
Parse an INI file and read a value
#include <INIReader.h>
#include <iostream>
int main() {
INIReader reader("config.ini");
if (reader.ParseError() < 0) {
std::cerr << "Can't load config.ini" << std::endl;
return 1;
}
std::string value = reader.Get("section", "key", "default");
std::cout << "Value: " << value << std::endl;
return 0;
}
Debug
Known issues
No known issues recorded.
Audit
Dependencies
No dependency data recorded yet.
Resources
No resource links recorded.