Go to the documentation of this file.
39 extern struct MyVarList
MyVars;
43 void myvar_set(
const char *var,
const char *val);
char * value
Value of user variable.
TAILQ_ENTRY(MyVar) entries
Linked list.
void myvar_set(const char *var, const char *val)
Set the value of a "my_" variable.
const char * myvar_get(const char *var)
Get the value of a "my_" variable.
void myvar_del(const char *var)
Unset the value of a "my_" variable.
struct MyVarList MyVars
List of all the user's custom config variables.
char * name
Name of user variable.
void myvarlist_free(struct MyVarList *list)
Free a List of MyVars.
TAILQ_HEAD(MyVarList, MyVar)