+2007-01-31
+ * applying patches from Mike Frysinger
+ * consider making the manpage install target part of the default
+ `make install` rather than a sep install-man3 target ?
+
2006-09-27
* adding docs/zip-php.htm integrating Chris Branch's mail into the docs
* appending docs/changes.htm rule from ./ChangeLog
<date>2006-09-21</date>
<P>
- The ZZipLib Project does already profive THREE libraries. The classic
+ The ZZipLib Project does already provide THREE libraries. The classic
zziplib.so (via "zzip/lib.h") is the most prominent one and used in
a number of different projects. The zzipfseeko.so ("zzip/fseeko.html")
and zzipmmapped.so ("zzip/mmapped.html") are technology demonstrations.
* a smaller buffer.
*/
zzip_ssize_t
-zzip_file_read(ZZIP_FILE * fp, char * buf, zzip_size_t len)
+zzip_file_read(ZZIP_FILE * fp, void * buf, zzip_size_t len)
{
ZZIP_DIR * dir;
zzip_size_t l;
* to decompress the data stream and any error is mapped to => errno(3).
*/
zzip_ssize_t
-zzip_read(ZZIP_FILE * fp, char * buf, zzip_size_t len)
+zzip_read(ZZIP_FILE * fp, void * buf, zzip_size_t len)
{
if (! fp) return 0;
if (! fp->dir)
_zzip_export
int zzip_file_close(ZZIP_FILE * fp);
_zzip_export
-zzip_ssize_t zzip_file_read(ZZIP_FILE * fp, char* buf, zzip_size_t len);
+zzip_ssize_t zzip_file_read(ZZIP_FILE * fp, void* buf, zzip_size_t len);
_zzip_export
ZZIP_FILE * zzip_open(zzip_char_t* name, int flags);
_zzip_export
int zzip_close(ZZIP_FILE * fp);
_zzip_export
-zzip_ssize_t zzip_read(ZZIP_FILE * fp, char * buf, zzip_size_t len);
+zzip_ssize_t zzip_read(ZZIP_FILE * fp, void * buf, zzip_size_t len);
/*
* the stdc variant to open/read/close files. - Take note of the freopen()