You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
330 B
9 lines
330 B
5 years ago
|
#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);
|
||
|
#endif
|