Blame xzlib.h

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