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.

10 lines
334 B

5 years ago
#ifndef PARSER_H
#define PARSER_H
#include "../types.h"
#include "../vars/vars.h"
5 years ago
static node_info* create_variable_const(char* p_name, void* value, variable_type var_type);
static node_info* move_value(char* to, char* from);
static node_info* create_logic_node(logic* logic_expr);
static void exec_stmt(node_info *exec_node);
5 years ago
#endif