1ZZIP_REWINDDIR(3) zziplib Function List ZZIP_REWINDDIR(3)
2
3
4
6 zzip_rewinddir, zzip_telldir, zzip_seekdir -
7
9 #include <zzip/lib.h>
10
11 void zzip_rewinddir((ZZIP_DIR * dir));
12
13 zzip_off_t zzip_telldir((ZZIP_DIR* dir));
14
15 void zzip_seekdir((ZZIP_DIR* dir, zzip_off_t offset));
16
18 The zzip_rewinddir function is the equivalent of a rewinddir(2) for a
19 realdir or the zipfile in place of a directory. The ZZIP_DIR handle
20 returned from zzip_opendir has a flag saying realdir or zipfile. As for
21 a zipfile, the filenames will include the filesubpath, so take care.
22
23 The zzip_telldir function is the equivalent of telldir(2) for a realdir
24 or zipfile.
25
26 The zzip_seekdir function is the equivalent of seekdir(2) for a realdir
27 or zipfile.
28
30 ยท Guido Draheim <guidod@gmx.de>
31
33 Copyright (c) 1999,2000,2001,2002,2003 Guido Draheim All rights
34 reserved, use under the restrictions of the Lesser GNU General Public
35 License or alternatively the restrictions of the Mozilla Public License
36 1.1
37
38
39
40zziplib 0.13.49 ZZIP_REWINDDIR(3)