refactor(ast): one file per ast_type -- UNSTABLE (3)

This commit is contained in:
Matteo Flebus 2026-01-15 15:53:56 +01:00
parent 68d8a1fd13
commit e3ec484621
9 changed files with 76 additions and 9 deletions

View file

@ -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 */