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 void zzip_rewinddir((ZZIP_DIR * dir));
13
14 zzip_off_t zzip_telldir((ZZIP_DIR * dir));
15
16 void zzip_seekdir((ZZIP_DIR * dir, zzip_off_t offset));
17
18 long zzip_telldir32((ZZIP_DIR * dir));
19
20 void zzip_seekdir32((ZZIP_DIR * dir, long offset));
21
23 The zzip_rewinddir function is the equivalent of a rewinddir(2) for a
24 realdir or the zipfile in place of a directory. The ZZIP_DIR handle
25 returned from zzip_opendir has a flag saying realdir or zipfile. As for
26 a zipfile, the filenames will include the filesubpath, so take care.
27
28 The zzip_telldir function is the equivalent of telldir(2) for a realdir
29 or zipfile.
30
31 The zzip_seekdir function is the equivalent of seekdir(2) for a realdir
32 or zipfile.
33
34 The zzip_telldir32 function is provided for users who can not use any
35 largefile-mode.
36
37 The zzip_seekdir32 function is provided for users who can not use any
38 largefile-mode.
39
41 ยท Guido Draheim <guidod@gmx.de>
42
44 Copyright (c) Guido Draheim, use under copyleft (LGPL,MPL)
45
46
47
48zziplib 0.13.71 ZZIP_REWINDDIR(3)