blob: 9d0c37735aee57f0b8b13c5245967bab256edbbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* $MirOS: contrib/hosted/fwcf/minilzop.h,v 1.1 2007/03/09 21:10:29 tg Exp $ */
/*
* This file is part of the FreeWRT project. FreeWRT is copyrighted
* material, please see the LICENCE file in the top-level directory
* or at http://www.freewrt.org/licence for details.
*/
#ifndef MINILZOP_H
#define MINILZOP_H
int minilzop(int ifd, int ofd, int compr_alg, int decompress);
/* TODO: use the two below for the “outer filesystem” as well */
void read_aszdata(int, char **, size_t *);
void write_aszdata(int, const char *, size_t);
#endif
|