Solved exercise 2 - create a simple tree program clone

This commit is contained in:
Fabio Scotto di Santolo
2025-06-30 22:25:31 +02:00
parent 7bc220f92c
commit a629f9de01
6 changed files with 162 additions and 0 deletions

7
exercises/tree/tree.h Normal file
View File

@@ -0,0 +1,7 @@
#ifndef TREE_H
#define TREE_H
int print_tree(const char *path, int depth);
#endif