Expand description
§CONF Format Parser
High-performance parser for standard .conf configuration files.
Supports the common configuration format used by many Unix/Linux applications:
# Comments start with #
key = value
quoted_value = "string with spaces"
number = 42
float = 3.14
boolean = true
# Sections
[section]
nested_key = value
# Arrays (space or comma separated)
array = item1 item2 item3
comma_array = item1, item2, item3
Functions§
- parse
- Parse CONF format configuration