9 lines
197 B
C++
9 lines
197 B
C++
#ifndef HELPERS_TREE_HELPERS_H_
|
|
#define HELPERS_TREE_HELPERS_H_
|
|
|
|
#include "runtime/tree.h"
|
|
#include <vector>
|
|
|
|
TSTree ** tree_array(std::vector<TSTree *> trees);
|
|
|
|
#endif // HELPERS_TREE_HELPERS_H_
|