Ecore_File: improve comment of ecore_file_mkdir()

This commit is contained in:
Vincent Torri 2015-07-03 09:34:46 +02:00 committed by Tom Hacohen
parent ffb5a1f673
commit a46adde19d
1 changed files with 4 additions and 3 deletions

View File

@ -206,9 +206,10 @@ static mode_t default_mode = S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IXGRP | S
* @param dir The name of the directory to create
* @return @c EINA_TRUE on successful creation, @c EINA_FALSE otherwise.
*
* This function creates the directory @p dir with the mode S_IRUSR |
* S_IWUSR | S_IXUSR | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH. On
* success, it returns @c EINA_TRUE, @c EINA_FALSE otherwise.
* This function creates the directory @p dir, with the mode S_IRUSR |
* S_IWUSR | S_IXUSR | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH on UNIX
* (mode is unsued on Windows). On success, it returns @c EINA_TRUE,
* @c EINA_FALSE otherwise.
*/
EAPI Eina_Bool
ecore_file_mkdir(const char *dir)