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]
This commit is contained in:
Stefan Schmidt 2017-02-13 14:30:27 +01:00
parent 0daed02e89
commit 73349edc19
1 changed files with 14 additions and 0 deletions

View File

@ -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"
/**