Configuration system.
More...
|
#define | CT_ARG_SHORT(name) { .style = eArgShort, .arg = (name) } |
|
#define | CT_ARG_LONG(name) { .style = eArgLong, .arg = (name) } |
|
#define | CT_ARG_DOS(name) { .style = eArgDOS, .arg = (name) } |
|
#define | CT_ARGS(it) { .args = (it), .count = sizeof(it) / sizeof(cfg_arg_t) } |
|
Configuration system.
◆ CT_ARG_DOS
#define CT_ARG_DOS |
( |
|
name | ) |
{ .style = eArgDOS, .arg = (name) } |
◆ CT_ARG_LONG
#define CT_ARG_LONG |
( |
|
name | ) |
{ .style = eArgLong, .arg = (name) } |
◆ CT_ARG_SHORT
#define CT_ARG_SHORT |
( |
|
name | ) |
{ .style = eArgShort, .arg = (name) } |
◆ CT_ARGS
#define CT_ARGS |
( |
|
it | ) |
{ .args = (it), .count = sizeof(it) / sizeof(cfg_arg_t) } |
◆ cfg_group_t
◆ arg_style_t
◆ cfg_type_t
the type of a configuration field
Definition at line 26 of file config.h.
◆ config_root()
create a new configuration group
- Parameters
-
info | the information about this group |
arena | the allocator to use |
- Returns
- the new configuration group
Definition at line 97 of file config.c.