An open API service indexing awesome lists of open source software.

https://github.com/blakeliafk/inihpp


https://github.com/blakeliafk/inihpp

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# inihpp

Make ini file more easy.

Only need to include the "inihpp.h" to your proj, and enjoy it.

## Read

```
inihpp ini;
ini.parse(file);
ini.get("database", "comment");
```

## Write

```
inihpp ini;
ini.set("history", "mem_port", "8964");
ini.save("main.ini");
```