607ca46e97
Signed-off-by: David Howells <dhowells@redhat.com> Acked-by: Arnd Bergmann <arnd@arndb.de> Acked-by: Thomas Gleixner <tglx@linutronix.de> Acked-by: Michael Kerrisk <mtk.manpages@gmail.com> Acked-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com> Acked-by: Dave Jones <davej@redhat.com>
11 lines
279 B
C
11 lines
279 B
C
#ifndef __CRAMFS_H
|
|
#define __CRAMFS_H
|
|
|
|
#include <uapi/linux/cramfs_fs.h>
|
|
|
|
/* Uncompression interfaces to the underlying zlib */
|
|
int cramfs_uncompress_block(void *dst, int dstlen, void *src, int srclen);
|
|
int cramfs_uncompress_init(void);
|
|
void cramfs_uncompress_exit(void);
|
|
#endif
|