Cthulhu  0.2.10
Cthulhu compiler collection

Reading API for configuration. More...

Collaboration diagram for Reading:

Functions

CT_PUREFN CT_CONFIG_API int cfg_int_value (const cfg_field_t *field)
 get the current integer value of a configuration field More...
 
CT_PUREFN CT_CONFIG_API bool cfg_bool_value (const cfg_field_t *field)
 get the current boolean value of a configuration field More...
 
CT_PUREFN CT_CONFIG_API const char * cfg_string_value (const cfg_field_t *field)
 get the current string value of a configuration field More...
 
CT_PUREFN CT_CONFIG_API vector_tcfg_vector_value (const cfg_field_t *field)
 get the current vector value of a configuration field More...
 
CT_PUREFN CT_CONFIG_API size_t cfg_enum_value (const cfg_field_t *field)
 get the current enum value of a configuration field More...
 
CT_PUREFN CT_CONFIG_API size_t cfg_flags_value (const cfg_field_t *field)
 get the current flags value of a configuration field More...
 

Detailed Description

Reading API for configuration.

Function Documentation

◆ cfg_bool_value()

CT_PUREFN CT_CONFIG_API bool cfg_bool_value ( const cfg_field_t field)

get the current boolean value of a configuration field

Parameters
fieldthe field to get the value of
Returns
the current value of field

Definition at line 143 of file reflect.c.

◆ cfg_enum_value()

CT_PUREFN CT_CONFIG_API size_t cfg_enum_value ( const cfg_field_t field)

get the current enum value of a configuration field

Parameters
fieldthe field to get the value of
Returns
the current value of field

Definition at line 167 of file reflect.c.

◆ cfg_flags_value()

CT_PUREFN CT_CONFIG_API size_t cfg_flags_value ( const cfg_field_t field)

get the current flags value of a configuration field

Parameters
fieldthe field to get the value of
Returns
the current value of field

Definition at line 175 of file reflect.c.

◆ cfg_int_value()

CT_PUREFN CT_CONFIG_API int cfg_int_value ( const cfg_field_t field)

get the current integer value of a configuration field

Parameters
fieldthe field to get the value of
Returns
the current value of field

get the current integer value of a configuration field

Definition at line 135 of file reflect.c.

◆ cfg_string_value()

CT_PUREFN CT_CONFIG_API const char* cfg_string_value ( const cfg_field_t field)

get the current string value of a configuration field

Parameters
fieldthe field to get the value of
Returns
the current value of field

Definition at line 151 of file reflect.c.

◆ cfg_vector_value()

CT_PUREFN CT_CONFIG_API vector_t* cfg_vector_value ( const cfg_field_t field)

get the current vector value of a configuration field

Parameters
fieldthe field to get the value of
Returns
the current value of field

Definition at line 159 of file reflect.c.