fs Add tree subcommand

This commit is contained in:
2025-10-04 12:02:03 +02:00
parent 082cb66c7e
commit ef9393e694
8 changed files with 143 additions and 2 deletions

7
ulib/fs/path.h Normal file
View File

@ -0,0 +1,7 @@
#ifndef ULIB_FS_PATH_H_
#define ULIB_FS_PATH_H_
void path_parse(const char *in, char *mp, char *path);
const char *path_basename(const char *path);
#endif // ULIB_FS_PATH_H_