Some exercise of keydata routines.
#ifndef DEBUG
#define DEBUG
#endif
#include <stdio.h>
extern "C" int main()
{
keys = myfile["section1"];
assert(keys != NULL);
assert(
eq_case(keys->
get(
"key1"),
"this is value 1 quoted"));
keys = myfile["section2"];
assert(keys != NULL);
assert(
eq_case(keys->
get(
"key1"),
"replaced value"));
return 0;
}