1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
#ifndef _LIBHX_IO_H
#define _LIBHX_IO_H 1
#include <sys/types.h>
#ifdef __cplusplus
extern "C" {
#endif
#ifndef __libhx_internal_hxmc_t_defined
#define __libhx_internal_hxmc_t_defined 1
typedef char hxmc_t;
#endif
enum {
HXF_UID = 1 << 0,
HXF_GID = 1 << 1,
HXF_KEEP = 1 << 2,
HX_REALPATH_NOFLAGS = 0,
HX_REALPATH_ABSOLUTE = 1 << 0,
HX_REALPATH_SELF = 1 << 1,
HX_REALPATH_PARENT = 1 << 2,
/* HX_REALPATH_SYMLINK = 1 << 3, removed in v3.13, thus blocked */
HX_REALPATH_DEFAULT = HX_REALPATH_SELF | HX_REALPATH_PARENT,
};
struct HXdir;
extern struct HXdir *HXdir_open(const char *);
extern const char *HXdir_read(struct HXdir *);
extern void HXdir_close(struct HXdir *);
extern int HX_copy_dir(const char *, const char *, unsigned int, ...);
extern int HX_copy_file(const char *, const char *, unsigned int, ...);
extern int HX_mkdir(const char *, unsigned int);
extern int HX_readlink(hxmc_t **, const char *);
extern int HX_realpath(hxmc_t **, const char *, unsigned int);
extern int HX_rrmdir(const char *);
extern ssize_t HXio_fullread(int, void *, size_t);
extern ssize_t HXio_fullwrite(int, const void *, size_t);
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /* _LIBHX_IO_H */
|