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.
11 lines
442 B
11 lines
442 B
#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 |