#include <stdio.h>
#include <zlib.h>
FILE *zopen(const char *fname, const char *mode);
static int
xgzread(void *cookie, char *data, int size)
{
return gzread(cookie, data, size);
}
static int
xgzwrite(void *cookie, const char *data, int size)
{
return gzwrite(cookie, __DECONST(void *, data), size);
}
static int
xgzclose(void *cookie)
{
return gzclose((gzFile) cookie);
}
FILE *
zopen(const char *fname, const char *mode)
{
gzFile gz = gzopen(fname, mode);
if(gz == NULL)
return NULL;
if(*mode == 'r')
return (funopen(gz, xgzread, NULL, NULL, xgzclose));
else
return (funopen(gz, NULL, xgzwrite, NULL, xgzclose));
}