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.

6 lines
209 B

#ifndef LOGIC_H
#define LOGIC_H
#include "../types.h"
plogic create_logic(const logic_type type, const pnode_info stmt_list, const char* var_name);
pnode_info create_logic_node(const plogic logic_expr);
#endif