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++
- Host: GitHub
- URL: https://github.com/atomicptr/libini
- Owner: atomicptr
- Created: 2015-01-03T00:41:12.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-06-27T18:18:21.000Z (over 10 years ago)
- Last Synced: 2025-03-07T00:37:44.283Z (11 months ago)
- Language: C++
- Homepage:
- Size: 129 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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