You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
799 B
36 lines
799 B
/* |
|
* Copyright (c) 2019 Peter Bigot Consulting, LLC |
|
* |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
|
|
/* Utility functions for use by filesystem implementations. */ |
|
|
|
#ifndef ZEPHYR_SUBSYS_FS_FS_IMPL_H_ |
|
#define ZEPHYR_SUBSYS_FS_FS_IMPL_H_ |
|
|
|
#include <zephyr/fs/fs.h> |
|
|
|
#ifdef __cplusplus |
|
extern "C" { |
|
#endif |
|
|
|
/** |
|
* @brief Strip the mount point prefix from a path. |
|
* |
|
* @param path an absolute path beginning with a mount point. |
|
* |
|
* @param mp a pointer to the mount point within which @p path is found |
|
* |
|
* @return the absolute path within the mount point. Behavior is |
|
* undefined if @p path does not start with the mount point prefix. |
|
*/ |
|
const char *fs_impl_strip_prefix(const char *path, |
|
const struct fs_mount_t *mp); |
|
|
|
|
|
#ifdef __cplusplus |
|
} |
|
#endif |
|
|
|
#endif /* ZEPHYR_SUBSYS_FS_FS_IMPL_H_ */
|
|
|