Files
my-os-project2/ulib/fs/path.h
2025-10-04 12:02:03 +02:00

8 lines
176 B
C

#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_