efl/src/lib/evil/evil_stdio.h

49 lines
1.0 KiB
C

#ifndef __EVIL_STDIO_H__
#define __EVIL_STDIO_H__
/**
* @file evil_stdio.h
* @brief The file that provides functions ported from Unix in stdio.h.
* @defgroup Evil_Stdio_Group Stdio.h functions
* @ingroup Evil
*
* This header provides functions ported from Unix in stdio.h.
* @{
*/
/**
* @brief Emulate the rename() function on Windows.
*
* @param src The old pathname.
* @param dst The new pathname.
* @return 0 on success, -1 otherwise.
*
* This function emulates the POSIX rename() function on Windows.
* The difference with the POSIX function is that the rename() function
* on windows fails if the destination exists.
*
* @since 1.8
*/
EVIL_API int evil_rename(const char *src, const char *dst);
/**
* @brief Wrap the _mkdir() function on Windows.
*
* @param[in] dirname The new dir name.
* @param[in] mode Unused.
* @return 0 on success, -1 otherwise.
*
* This function wraps the _mkdir() function.
*
* @since 1.15
*/
EVIL_API int evil_mkdir(const char *dirname, mode_t mode);
/**
* @}
*/
#endif /* __EVIL_STDIO_H__ */