/* * SPDX-License-Identifier: MIT * Copyright (c) 2025 Fabio Scotto di Santolo */ #ifndef TREE_H #define TREE_H int print_tree(const char *path, int depth); #endif