mirror of
https://github.com/libretro/RetroArch
synced 2025-04-09 21:45:45 +00:00
Add documentation to dirent_is_directory
This commit is contained in:
parent
a4a133d700
commit
601db7741f
@ -105,6 +105,18 @@ void dir_list_free(struct string_list *list)
|
|||||||
}
|
}
|
||||||
|
|
||||||
#ifndef _WIN32
|
#ifndef _WIN32
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* dirent_is_directory:
|
||||||
|
* @path : path to the directory entry.
|
||||||
|
* @entry : pointer to the directory entry.
|
||||||
|
*
|
||||||
|
* Is the directory listing entry a directory?
|
||||||
|
*
|
||||||
|
* Returns: true if directory listing entry is
|
||||||
|
* a directory, false if not.
|
||||||
|
*/
|
||||||
|
|
||||||
static bool dirent_is_directory(const char *path,
|
static bool dirent_is_directory(const char *path,
|
||||||
const struct dirent *entry)
|
const struct dirent *entry)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user