aboutsummaryrefslogtreecommitdiff
path: root/inc/optimize.h
blob: 51cb7934a7e0ee41416962ce24d21048d855066e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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