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.
|
#ifndef FUNCTIONS
|
|
#define FUNCTIONS
|
|
#include "../includes/include.h"
|
|
|
|
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);
|
|
#endif |