I am trying to create a simple configuration file that looks like this
url = http://mysite.com file = main.exe true = 0
when the program ru
Why not trying something simple and human-readable, like JSON (or XML) ?
There are many pre-made open-source implementations of JSON (or XML) for C++ - I would use one of them.
And if you want something more "binary" - try BJSON or BSON :)