mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-14 22:04:43 +00:00
23 lines
423 B
C
23 lines
423 B
C
#include <zlib.h>
|
|
|
|
#include "libstream.h"
|
|
|
|
extern gzFile gzopen (filesystem_io_t *fs);
|
|
int stream_uncompress(stream_t *stream)
|
|
{
|
|
gzFile *gz;
|
|
|
|
gz = gzopen(&stream->fs);
|
|
if (gz == NULL)
|
|
return -1;
|
|
|
|
stream->fs.volume = NULL;
|
|
stream->fs.file = gz;
|
|
stream->fs.read = (stream_read_t)gzread;
|
|
stream->fs.lseek = (stream_lseek_t)gzseek;
|
|
stream->fs.close = (stream_close_t)gzclose;
|
|
stream->fs.umount = NULL;
|
|
|
|
return 0;
|
|
}
|