#ifndef VARS_H #define VARS_H #include "../types.h" void add_var(char* name, variable_values* values, map_void_t* p_var_map); variable* make_variable(char* p_name, void* value, variable_type var_type); variable_values* get_value(char* p_name, map_void_t* p_var_map); void* alloc_value(void* value, variable_type var_type); node_info* create_variable(char* p_name, void* value, variable_type var_type); node_info* move_value(char* to, char* from); #endif