RPMRPC Vectors. |
typedef int | fdio_mkdir_function_t (const char *path, mode_t mode) |
typedef int | fdio_chdir_function_t (const char *path) |
typedef int | fdio_rmdir_function_t (const char *path) |
typedef int | fdio_rename_function_t (const char *oldpath, const char *newpath) |
typedef int | fdio_unlink_function_t (const char *path) |
typedef int | fdio_stat_function_t (const char *path, struct stat *st) |
typedef int | fdio_lstat_function_t (const char *path, struct stat *st) |
typedef int | fdio_access_function_t (const char *path, int amode) |
RPMRPC Interface. |
int | Mkdir (const char *path, mode_t mode) |
int | Chdir (const char *path) |
int | Rmdir (const char *path) |
int | Rename (const char *oldpath, const char *newpath) |
int | Link (const char *oldpath, const char *newpath) |
int | Unlink (const char *path) |
int | Readlink (const char *path, char *buf, size_t bufsiz) |
int | Stat (const char *path, struct stat *st) |
int | Lstat (const char *path, struct stat *st) |
int | Access (const char *path, int amode) |
int | Glob (const char *pattern, int flags, int errfunc(const char *epath, int eerrno), glob_t *pglob) |
void | Globfree (glob_t *pglob) |
DIR* | Opendir (const char *name) |
struct dirent* | Readdir (DIR *dir) |
int | Closedir (DIR *dir) |