swh:1:snp:c2847dfd741eae21606027cf29250d1ebcd63fb4
Raw File
Tip revision: c7788792a5e7b0d5d7f96d0766b4cb6112d47d75 authored by Linus Torvalds on 20 May 2013, 21:37:38 UTC
Linux 3.10-rc2
Tip revision: c778879
cramfs_fs.h
#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
back to top