diff options
author | Marvin Borner | 2023-05-21 18:09:04 +0200 |
---|---|---|
committer | Marvin Borner | 2023-05-21 18:51:58 +0200 |
commit | 7ebabbb0022bce1cd6c05db583acb20d8659a356 (patch) | |
tree | d95ce3a5f6897ad19bc4ea6ccdfb603035a5908d /inc/optimize.h | |
parent | 8499010b91a2c7496d6af74cce35a6b4e0378633 (diff) |
Added additional optimizer
This will be useful for variadic index lengths
Diffstat (limited to 'inc/optimize.h')
-rw-r--r-- | inc/optimize.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/inc/optimize.h b/inc/optimize.h new file mode 100644 index 0000000..51cb793 --- /dev/null +++ b/inc/optimize.h @@ -0,0 +1,11 @@ +// Copyright (c) 2023, Marvin Borner <dev@marvinborner.de> +// SPDX-License-Identifier: MIT + +#ifndef BLOC_OPTIMIZE +#define BLOC_OPTIMIZE + +#include <tree.h> + +struct list *optimize_tree(struct tree *tree, void **all_trees); + +#endif |