Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef __CRAMFS_H |
| 2 | #define __CRAMFS_H |
| 3 | |
David Howells | 607ca46 | 2012-10-13 10:46:48 +0100 | [diff] [blame] | 4 | #include <uapi/linux/cramfs_fs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | /* Uncompression interfaces to the underlying zlib */ |
| 7 | int cramfs_uncompress_block(void *dst, int dstlen, void *src, int srclen); |
| 8 | int cramfs_uncompress_init(void); |
Alexey Dobriyan | 368bdb3 | 2006-09-29 02:01:05 -0700 | [diff] [blame] | 9 | void cramfs_uncompress_exit(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #endif |