Files
system-programming/exercises/tree/tree.h
Fabio Scotto di Santolo dd53e83af6 Reformat code
2025-07-04 10:39:07 +02:00

7 lines
84 B
C

#ifndef TREE_H
#define TREE_H
int print_tree(const char *path, int depth);
#endif