cramfs_fs.h 279 B

12345678910
  1. #ifndef __CRAMFS_H
  2. #define __CRAMFS_H
  3. #include <uapi/linux/cramfs_fs.h>
  4. /* Uncompression interfaces to the underlying zlib */
  5. int cramfs_uncompress_block(void *dst, int dstlen, void *src, int srclen);
  6. int cramfs_uncompress_init(void);
  7. void cramfs_uncompress_exit(void);
  8. #endif