Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 338 Bytes

README.md

File metadata and controls

13 lines (10 loc) · 338 Bytes

libsimpleconf

A lightweight and simple configuration file parsing library in C

It parses basic ini-style configuration files that follow the format

key1=value1
key2=value2
...

The values can be of type char*, float, int and bool. There is an example of how to use the parser in the header file, libsimpleconf.h.