123456789101112131415161718192021222324252627282930313233343536 |
- #ifndef ZEPHYR_SUBSYS_FS_FS_IMPL_H_
- #define ZEPHYR_SUBSYS_FS_FS_IMPL_H_
- #include <fs/fs.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- const char *fs_impl_strip_prefix(const char *path,
- const struct fs_mount_t *mp);
- #ifdef __cplusplus
- }
- #endif
- #endif
|