dotconf icon indicating copy to clipboard operation
dotconf copied to clipboard

dot.conf configuration file parser

Results 7 dotconf issues
Sort by recently updated
recently updated
newest added

The INSTALL file says we should use ./configure but this does not work.

Since it does not modify it, and callers might be using a const string.

In speech dispatcher, we use string options which can have an empty value, which we write "". It seems that dotconf doesn't support it: GenericPunctNone "" yields to Missing argument...

Input for `examples/simple`: ```hex 00000000 45 78 61 6d 70 6c 65 4c 69 73 74 20 20 20 20 20 |ExampleList | 00000010 20 20 27 22 6c 69...

When building dotconf under `-Wall -Wextra`, there are some warnings caused by `dotconf.h`: ``` /Users/sjors/Projecten/dazeus/dotconfbug/main.cpp:10:2: warning: missing field 'context' initializer [-Wmissing-field-initializers] LAST_OPTION ^ /Users/sjors/Projecten/dazeus/dotconfbug/dotconf/src/dotconf.h:42:49: note: expanded from macro 'LAST_OPTION' #define...

When a parsing error is introduced in a DOTCONF_CB function by returning a non-NULL charptr, dotconf_command_loop() is supposed to return 0 indicating failure to parse. This works fine for the...