summaryrefslogtreecommitdiff
path: root/src/lib/ecore_file
diff options
context:
space:
mode:
authorJinYong Park <j4939.park@samsung.com>2017-10-13 14:02:31 -0700
committerCedric Bail <cedric@osg.samsung.com>2017-10-13 14:02:37 -0700
commitb05cae250c34764d6055cf3ee898efbab42565ba (patch)
treefe3710b8ad31e3651ac02d01cfd33a5e1cbd3f42 /src/lib/ecore_file
parent377a68561987c8fc1bdd33842488683b2a7e8a8b (diff)
downloadefl-b05cae250c34764d6055cf3ee898efbab42565ba.tar.gz
ecore_file: rename parameter for doxygen
Summary: Some parameter's name are different in annotations and statements, so it occurs doxygen warning. To fix it, rename that parameters. Test Plan: API Doxygen Revision Reviewers: raster, cedric, jpeg, myoungwoon, Jaehyun_Cho Reviewed By: cedric Differential Revision: https://phab.enlightenment.org/D5313 Signed-off-by: Cedric Bail <cedric@osg.samsung.com>
Diffstat (limited to 'src/lib/ecore_file')
-rw-r--r--src/lib/ecore_file/Ecore_File.h10
-rw-r--r--src/lib/ecore_file/ecore_file.c4
2 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/ecore_file/Ecore_File.h b/src/lib/ecore_file/Ecore_File.h
index 9a8402df31..57cb550e30 100644
--- a/src/lib/ecore_file/Ecore_File.h
+++ b/src/lib/ecore_file/Ecore_File.h
@@ -383,7 +383,7 @@ EAPI const char *ecore_file_file_get (const char *path);
* returns @c NULL. When not needed anymore, the returned value must
* be freed.
*/
-EAPI char *ecore_file_dir_get (const char *path);
+EAPI char *ecore_file_dir_get (const char *file);
/**
* @brief Checks if the given file can be read.
@@ -422,7 +422,7 @@ EAPI Eina_Bool ecore_file_can_exec (const char *file);
/**
* @brief Gets the path pointed by the given link.
*
- * @param lnk The name of the link.
+ * @param link The name of the link.
* @return The path pointed by link or NULL.
*
* This function returns the path pointed by @p link as a newly
@@ -488,7 +488,7 @@ EAPI char *ecore_file_escape_name (const char *filename);
* failure, the function returns @c NULL. When not needed anymore, the
* returned value must be freed.
*/
-EAPI char *ecore_file_strip_ext (const char *file);
+EAPI char *ecore_file_strip_ext (const char *path);
/**
* @brief Checks if the given directory is empty.
@@ -537,7 +537,7 @@ EAPI Ecore_File_Monitor *ecore_file_monitor_add(const char *path,
* of the notify methods (Inotify, Windows notification or polling) is
* availablethis function does nothing.
*/
-EAPI void ecore_file_monitor_del(Ecore_File_Monitor *ecore_file_monitor);
+EAPI void ecore_file_monitor_del(Ecore_File_Monitor *em);
/**
* @brief Gets the monitored path.
@@ -550,7 +550,7 @@ EAPI void ecore_file_monitor_del(Ecore_File_Monitor *ecore_file_m
* returned by ecore_file_monitor_add(). If @p em is @c NULL, the
* function returns @c NULL.
*/
-EAPI const char *ecore_file_monitor_path_get(Ecore_File_Monitor *ecore_file_monitor);
+EAPI const char *ecore_file_monitor_path_get(Ecore_File_Monitor *em);
/* Path */
diff --git a/src/lib/ecore_file/ecore_file.c b/src/lib/ecore_file/ecore_file.c
index f5c15b6e60..14c1934853 100644
--- a/src/lib/ecore_file/ecore_file.c
+++ b/src/lib/ecore_file/ecore_file.c
@@ -631,12 +631,12 @@ ecore_file_can_exec(const char *file)
}
EAPI char *
-ecore_file_readlink(const char *lnk)
+ecore_file_readlink(const char *link)
{
char buf[PATH_MAX];
int count;
- if ((count = readlink(lnk, buf, sizeof(buf) - 1)) < 0) return NULL;
+ if ((count = readlink(link, buf, sizeof(buf) - 1)) < 0) return NULL;
buf[count] = 0;
return strdup(buf);
}