blob: 133789609f239e5f25edfade82be8fe7f6ddb381 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __CRAMFS_H
2#define __CRAMFS_H
3
David Howells607ca462012-10-13 10:46:48 +01004#include <uapi/linux/cramfs_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005
Linus Torvalds1da177e2005-04-16 15:20:36 -07006/* Uncompression interfaces to the underlying zlib */
7int cramfs_uncompress_block(void *dst, int dstlen, void *src, int srclen);
8int cramfs_uncompress_init(void);
Alexey Dobriyan368bdb32006-09-29 02:01:05 -07009void cramfs_uncompress_exit(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#endif