cfg_parse  1.0
Simple config file parser in C
cfg_parse
Author
Greg Kennedy kenne.nosp@m.dy.g.nosp@m.reg@g.nosp@m.mail.nosp@m..com
Version
1.0

DESCRIPTION

There is no standard way in C to parse config files. Several libraries have sprung up to solve the problem, but perhaps that is overkill for what should be a simple operation.

Presenting: cfg_parse - a compile-in solution for reading key-value pairs from file(s), looking up settings, and writing a config file back to disk.

LIMITATIONS

Comments in the config file are stripped on input and not preserved on write. Lookup keys are case-insensitive and may not contain the equals ('=') character. All config files are expected to contain only ASCII characters: UTF-8 or other wchar encodings are not supported.

cfg_parse structure is internally implemented as a singly-linked list. This means that many operations take O(n) time to complete (lookup, set/update, delete, etc.)

It is not recommended to store a very large number of items in the structure if you need high-performance lookup. Of course, if your config file is complex enough to cause performance issues, this library is probably not for you - switch to XML or JSON or similar.

LICENSE

This is free and unencumbered software released into the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.

In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.