![]() |
Vault
4.1
|
#include <fcntl.h>#include <sys/stat.h>#include <errno.h>Go to the source code of this file.
Defines | |
| #define | O_BINARY 0x8000 |
| Macro to define O_BINARY mode, which is not in the standard headers. | |
| #define | FD_ZERO(p) memset(p, 0, sizeof(*(p))) |
| #define | V_INSTANT_SNAPSHOT_IS_UTC |
Functions | |
| char * | vault::getcwd (char *buf, size_t size) |
| ssize_t | vault::read (int fd, void *buffer, size_t numBytes) |
| ssize_t | vault::write (int fd, const void *buffer, size_t numBytes) |
| off_t | vault::lseek (int fd, off_t offset, int whence) |
| int | vault::open (const char *path, int flags, mode_t mode) |
| FILE * | vault::fopen (const char *path, const char *mode) |
| int | vault::close (int fd) |
| int | vault::mkdir (const char *path, mode_t mode) |
| int | vault::rmdir (const char *path) |
| int | vault::unlink (const char *path) |
| int | vault::rename (const char *oldName, const char *newName) |
| int | vault::stat (const char *path, struct stat *buf) |
| int | vault::strcasecmp (const char *s1, const char *s2) |
| int | vault::strncasecmp (const char *s1, const char *s2, size_t length) |
| int | vault::vsnprintf (char *buffer, size_t length, const char *format, va_list args) |
Definition in file vtypes_internal_platform.h.