minilzop.h 547 B

1234567891011121314151617
  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. int minilzop(int ifd, int ofd, int compr_alg, int decompress);
  10. /* TODO: use the two below for the “outer filesystem” as well */
  11. void read_aszdata(int, char **, size_t *);
  12. void write_aszdata(int, const char *, size_t);
  13. #endif