#ifndef FUNCTIONS #define FUNCTIONS #include "../types.h" #include "../linked_list/linked_list.h" #include "../linked_list/linked_list.c" node_info *create_function(char *p_name, node_info *p_stmts); node_info *create_function_call(char *p_name); node_info *create_compound_statement(node_info *new_statement_list, node_info *statement_head); node_info* add_to_compound_statement(node_info* new_statement, node_info* statement_head); #endif