13 lines
171 B
C
13 lines
171 B
C
/*
|
|
* 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
|