Cthulhu  0.2.10
Cthulhu compiler collection
Configuration

Configuration system. More...

Collaboration diagram for Configuration:

Modules

 Construction
 Configuration construction API.
 
 Reflection
 Reflection API for configuration.
 
 Reading
 Reading API for configuration.
 
 Writing
 Writing API for configuration.
 

Data Structures

struct  cfg_arg_t
 
struct  cfg_arg_array_t
 
struct  cfg_info_t
 information about a configuration field More...
 
struct  cfg_int_t
 an integer field More...
 
struct  cfg_choice_t
 a choice in a set of options More...
 
struct  cfg_enum_t
 a choice from a set of options More...
 

Macros

#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) }
 

Typedefs

typedef typedefCT_BEGIN_API struct cfg_group_t cfg_group_t
 

Enumerations

enum  cfg_type_t { eConfigCount }
 the type of a configuration field More...
 
enum  arg_style_t { eArgCount }
 

Functions

CT_CONFIG_API cfg_group_tconfig_root (const cfg_info_t *info, arena_t *arena)
 create a new configuration group More...
 

Detailed Description

Configuration system.

Macro Definition Documentation

◆ CT_ARG_DOS

#define CT_ARG_DOS (   name)    { .style = eArgDOS, .arg = (name) }

Definition at line 56 of file config.h.

◆ CT_ARG_LONG

#define CT_ARG_LONG (   name)    { .style = eArgLong, .arg = (name) }

Definition at line 55 of file config.h.

◆ CT_ARG_SHORT

#define CT_ARG_SHORT (   name)    { .style = eArgShort, .arg = (name) }

Definition at line 54 of file config.h.

◆ CT_ARGS

#define CT_ARGS (   it)    { .args = (it), .count = sizeof(it) / sizeof(cfg_arg_t) }

Definition at line 57 of file config.h.

Typedef Documentation

◆ cfg_group_t

typedef struct cfg_group_t cfg_group_t

Definition at line 13 of file config.h.

Enumeration Type Documentation

◆ arg_style_t

Enumerator
eArgCount 

Definition at line 37 of file config.h.

◆ cfg_type_t

enum cfg_type_t

the type of a configuration field

Enumerator
eConfigCount 

Definition at line 26 of file config.h.

Function Documentation

◆ config_root()

CT_CONFIG_API cfg_group_t* config_root ( const cfg_info_t info,
arena_t arena 
)

create a new configuration group

Parameters
infothe information about this group
arenathe allocator to use
Returns
the new configuration group

Definition at line 97 of file config.c.