diff options
author | Vincent Torri <vincent.torri@gmail.com> | 2015-07-03 09:34:46 +0200 |
---|---|---|
committer | Tom Hacohen <tom@stosb.com> | 2015-07-03 16:23:06 +0100 |
commit | a46adde19da4a7e1b2d0b4b59b874689b73783c0 (patch) | |
tree | 8323d8f5a4a7b16bac545e83cf774b0d2a011b22 /src | |
parent | ffb5a1f673e069b9f8d6c630df5a2245609fa3b2 (diff) |
Ecore_File: improve comment of ecore_file_mkdir()
Diffstat (limited to '')
-rw-r--r-- | src/lib/ecore_file/ecore_file.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/lib/ecore_file/ecore_file.c b/src/lib/ecore_file/ecore_file.c index 7a4a16c236..d9ee50f4a8 100644 --- a/src/lib/ecore_file/ecore_file.c +++ b/src/lib/ecore_file/ecore_file.c | |||
@@ -206,9 +206,10 @@ static mode_t default_mode = S_IRUSR | S_IWUSR | S_IXUSR | S_IRGRP | S_IXGRP | S | |||
206 | * @param dir The name of the directory to create | 206 | * @param dir The name of the directory to create |
207 | * @return @c EINA_TRUE on successful creation, @c EINA_FALSE otherwise. | 207 | * @return @c EINA_TRUE on successful creation, @c EINA_FALSE otherwise. |
208 | * | 208 | * |
209 | * This function creates the directory @p dir with the mode S_IRUSR | | 209 | * This function creates the directory @p dir, with the mode S_IRUSR | |
210 | * S_IWUSR | S_IXUSR | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH. On | 210 | * S_IWUSR | S_IXUSR | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH on UNIX |
211 | * success, it returns @c EINA_TRUE, @c EINA_FALSE otherwise. | 211 | * (mode is unsued on Windows). On success, it returns @c EINA_TRUE, |
212 | * @c EINA_FALSE otherwise. | ||
212 | */ | 213 | */ |
213 | EAPI Eina_Bool | 214 | EAPI Eina_Bool |
214 | ecore_file_mkdir(const char *dir) | 215 | ecore_file_mkdir(const char *dir) |