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

https://github.com/atomicptr/libini

Simple header-only .ini parser written in C++
https://github.com/atomicptr/libini

Last synced: about 1 month ago
JSON representation

Simple header-only .ini parser written in C++

Awesome Lists containing this project

README

          

# libini

Simple header-only .ini parser written in C++

## Usage

Put the libini.hpp file somewhere into your project, include it and get started:

#include "path/to/libini.hpp"

auto ini = libini::parse("[Category]\nKey=Value");

auto val = ini["Category"]["Key"];

## License

MIT