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.

12 lines
471 B

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