fs_impl.c 401 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright (c) 2019 Peter Bigot Consulting, LLC
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <zephyr.h>
  7. #include <fs/fs.h>
  8. #include "fs_impl.h"
  9. const char *fs_impl_strip_prefix(const char *path,
  10. const struct fs_mount_t *mp)
  11. {
  12. static const char *const root = "/";
  13. if ((path == NULL) || (mp == NULL)) {
  14. return path;
  15. }
  16. path += mp->mountp_len;
  17. return *path ? path : root;
  18. }