https://github.com/beached/kv_file
A simple key value file parser.
https://github.com/beached/kv_file
Last synced: 7 months ago
JSON representation
A simple key value file parser.
- Host: GitHub
- URL: https://github.com/beached/kv_file
- Owner: beached
- License: mit
- Created: 2016-10-04T14:18:38.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-01-22T23:22:49.000Z (over 7 years ago)
- Last Synced: 2025-01-07T21:12:33.329Z (over 1 year ago)
- Language: C++
- Size: 23.4 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# KV File
A simple key value file parser.
Parses files like
```
somekey=somevalue
"someother\"key"=someothervalue
"some=key2"=somethingelse
```
Each line is parsed into a struct with a string key and a string value member that is in a vector with each line being an element. Blank lines are skipped