fix: merging all the code

This commit is contained in:
Matteo Flebus 2026-01-15 18:49:42 +01:00
parent 2e9e98d343
commit 1eecb1bd42
12 changed files with 86 additions and 61 deletions

View file

@ -31,6 +31,6 @@ struct ast *ast_create_if(struct ast *condition, struct ast *then_clause,
/*
* @brief: frees the given ast_if and sets the pointer to NULL.
*/
void ast_free_if(struct ast_if **if_data);
void ast_free_if(struct ast_if *if_data);
#endif /* ! AST_IF_H */