.libconfig general

Libconfig is a simple compact library for processing structured configuration files.  The file format is more compact and more readable than XML and unlike XML, it is type-aware, so it is not necessary to do string parsing in application code. Resources Libconfig homepage      

Read More

Using libconfig in a C++ project

Installing Use the following to install the library on your Raspberry Pi:   sudo apt-get install libconfig++-dev Using #include <libconfig.h++> //This library needs the "-lconfig++" adding to Project Properties > Build > Linker > Libraries using namespace libconfig;      

Read More

Using libconfig in a C project

Installing Use the following to install the library on your Raspberry Pi: sudo apt-get install libconfig-dev Using #include <libconfig.h> //This library needs the "-lconfig" adding to Project Properties > Build > Linker > Libraries      

Read More