summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Schmidt <stefan@osg.samsung.com>2017-02-13 14:30:27 +0100
committerStefan Schmidt <stefan@osg.samsung.com>2017-02-13 14:30:27 +0100
commit73349edc19305e2c852ecbdd48dd8b8880fcd4ca (patch)
tree8129104a5093c7943edeca9e7ad0e085b9c0f155
parent0daed02e8988f9669cd3da47724e82d6929b23b9 (diff)
downloadefl-73349edc19305e2c852ecbdd48dd8b8880fcd4ca.tar.gz
eina: make the ein_file_unlink symbol availbale form the ein_file header
It was only defined in the c file. Without any documentation, since tag, etc. tests/eina/eina_test_file.c:855:4: warning: implicit declaration of function ‘eina_file_unlink’ [-Wimplicit-function-declaration]
-rw-r--r--src/lib/eina/eina_file.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/lib/eina/eina_file.h b/src/lib/eina/eina_file.h
index 758167695e..7a1c55994f 100644
--- a/src/lib/eina/eina_file.h
+++ b/src/lib/eina/eina_file.h
@@ -757,6 +757,20 @@ static inline size_t eina_file_path_join(char *dst,
const char *a,
const char *b);
+
+/**
+ * @brief Unlink file
+ *
+ * @param pathname File name to unlink.
+ * @return #EINA_TRUE if the unlink was successfull, #EINA_FALSE otherwise..
+ *
+ * This function is a wrapper around the unlink() system call. It removes a link to
+ * a file.
+ *
+ * @since 1.19
+ */
+EAPI Eina_Bool eina_file_unlink(const char *pathname);
+
#include "eina_inline_file.x"
/**