Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions include/zephyr/fs/fs.h
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ static inline void fs_dir_t_init(struct fs_dir_t *zdp)
* @warning If @p flags are set to 0 the function will open file, if it exists
* and is accessible, but you will have no read/write access to it.
*
* @param zfp Pointer to a file object
* @param zfp Pointer to an @b initialized file object
* @param file_name The name of a file to open
* @param flags The mode flags
*
Expand Down Expand Up @@ -506,7 +506,7 @@ int fs_mkdir(const char *path);
*
* Opens an existing directory specified by the path.
*
* @param zdp Pointer to the directory object
* @param zdp Pointer to the @b initialized directory object
* @param path Path to the directory to open
*
* @retval 0 on success;
Expand Down