Blame xzlib.h

Packit 423ecb
/**
Packit 423ecb
 * xzlib.h: header for the front end for the transparent suport of lzma
Packit 423ecb
 *          compression at the I/O layer
Packit 423ecb
 *
Packit 423ecb
 * See Copyright for the status of this software.
Packit 423ecb
 *
Packit 423ecb
 * Anders F Bjorklund <afb@users.sourceforge.net>
Packit 423ecb
 */
Packit 423ecb
Packit 423ecb
#ifndef LIBXML2_XZLIB_H
Packit 423ecb
#define LIBXML2_XZLIB_H
Packit 423ecb
typedef void *xzFile;           /* opaque lzma file descriptor */
Packit 423ecb
Packit 423ecb
xzFile __libxml2_xzopen(const char *path, const char *mode);
Packit 423ecb
xzFile __libxml2_xzdopen(int fd, const char *mode);
Packit 423ecb
int __libxml2_xzread(xzFile file, void *buf, unsigned len);
Packit 423ecb
int __libxml2_xzclose(xzFile file);
Packit 423ecb
int __libxml2_xzcompressed(xzFile f);
Packit 423ecb
#endif /* LIBXML2_XZLIB_H */