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.
eon/eon-win/eon/functions/functions.h

12 lines
550 B

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