fs_impl.h 792 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * Copyright (c) 2019 Peter Bigot Consulting, LLC
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /* Utility functions for use by filesystem implementations. */
  7. #ifndef ZEPHYR_SUBSYS_FS_FS_IMPL_H_
  8. #define ZEPHYR_SUBSYS_FS_FS_IMPL_H_
  9. #include <fs/fs.h>
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. /**
  14. * @brief Strip the mount point prefix from a path.
  15. *
  16. * @param path an absolute path beginning with a mount point.
  17. *
  18. * @param mp a pointer to the mount point within which @p path is found
  19. *
  20. * @return the absolute path within the mount point. Behavior is
  21. * undefined if @p path does not start with the mount point prefix.
  22. */
  23. const char *fs_impl_strip_prefix(const char *path,
  24. const struct fs_mount_t *mp);
  25. #ifdef __cplusplus
  26. }
  27. #endif
  28. #endif /* ZEPHYR_SUBSYS_FS_FS_IMPL_H_ */