1zzip_rewinddir(3) zziplib Function List zzip_rewinddir(3)
2
3
4
6 zzip_rewinddir, zzip_telldir, zzip_seekdir, zzip_telldir32,
7 zzip_seekdir32 - rewind.
8
10 #include <zzip/lib.h>
11
12
13 void
14 zzip_rewinddir(ZZIP_DIR * dir)
15
16 zzip_off_t
17 zzip_telldir(ZZIP_DIR * dir)
18
19 void
20 zzip_seekdir(ZZIP_DIR * dir, zzip_off_t offset)
21
22 long
23 zzip_telldir32(ZZIP_DIR * dir)
24
25 void
26 zzip_seekdir32(ZZIP_DIR * dir, long offset)
27
28
29
30
32 The zzip_rewinddir function is the equivalent of a rewinddir(2) for a
33 realdir or the zipfile in place of a directory. The ZZIP_DIR handle
34 returned from zzip_opendir has a flag saying realdir or zipfile. As for
35 a zipfile, the filenames will include the filesubpath, so take care.
36
37 The zzip_telldir function is the equivalent of telldir(2) for a
38 realdir or zipfile.
39
40 The zzip_seekdir function is the equivalent of seekdir(2) for a
41 realdir or zipfile.
42
43 The zzip_telldir32 function is provided for users who can not use any
44 largefile-mode.
45
46 The zzip_seekdir32 function is provided for users who can not use any
47 largefile-mode.
48
49
50
52 Guido Draheim <guidod@gmx.de>
53
54
55
57 Copyright (c) Guido Draheim, use under copyleft (LGPL,MPL)
58
59
60
61
62
63zziplib 0.13.72 zzip_rewinddir(3)