Classes | |
struct | mvar_t |
Variables | |
mvar_t *E_( | mvar_New )(const char *name, const char *value) |
void E_( | mvar_Delete )(mvar_t *v) |
void E_( | mvar_AppendVar )(mvar_t *v, mvar_t *f) |
mvar_t *E_( | mvar_Duplicate )(const mvar_t *v) |
void E_( | mvar_PushVar )(mvar_t *v, mvar_t *f) |
void E_( | mvar_RemoveVar )(mvar_t *v, mvar_t *f) |
mvar_t *E_( | mvar_GetVar )(mvar_t *s, const char *name) |
char *E_( | mvar_GetValue )(mvar_t *v, char *field) |
void E_( | mvar_PushNewVar )(mvar_t *vars, const char *name, const char *value) |
void E_( | mvar_AppendNewVar )(mvar_t *vars, const char *name, const char *value) |
|
This function creates a variable with the given name and value and adds it as last child of vars |
|
This function adds f to the children variables of v, at last position |
|
This function deletes a variable |
|
This function duplicates a variable |
|
This function retrieves the value of the child variable named "field" |
|
This function retrieves the child variable named "name" |
|
This function creates a new variable |
|
This function creates a variable with the given name and value and adds it as first child of vars |
|
This function adds f to the children variables of v, at fist position |
|
This function removes f from the children variables of v |