minilzop.h 573 B

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