refactor(ast): one file per ast_type -- UNSTABLE (3)
This commit is contained in:
parent
68d8a1fd13
commit
e3ec484621
9 changed files with 76 additions and 9 deletions
|
|
@ -28,5 +28,9 @@ struct ast_if *ast_get_if(struct ast *node);
|
|||
*/
|
||||
struct ast *ast_create_if(struct ast *condition, struct ast *then_clause,
|
||||
struct ast *else_clause);
|
||||
/*
|
||||
* @brief: frees the given ast_if.
|
||||
*/
|
||||
void ast_free_if(struct ast_if *if_data)
|
||||
|
||||
#endif /* ! AST_IF_H */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue