1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-26 23:11:19 +01:00

Merge pull request #6848 from OTAkeys/pr/vfs_readdir_doc

vfs: fix readdir return value documentation
This commit is contained in:
Joakim Nohlgård 2017-04-05 08:28:55 +02:00 committed by GitHub
commit 96652c3353

View File

@ -652,7 +652,8 @@ int vfs_opendir(vfs_DIR *dirp, const char *dirname);
* @param[in] dirp pointer to open directory
* @param[out] entry directory entry information
*
* @return 0 on success
* @return 1 if @p entry was updated
* @return 0 if @p dirp has reached the end of the directory index
* @return <0 on error
*/
int vfs_readdir(vfs_DIR *dirp, vfs_dirent_t *entry);