Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.7-rc7 10 lines 279 B view raw
1#ifndef __CRAMFS_H 2#define __CRAMFS_H 3 4#include <uapi/linux/cramfs_fs.h> 5 6/* Uncompression interfaces to the underlying zlib */ 7int cramfs_uncompress_block(void *dst, int dstlen, void *src, int srclen); 8int cramfs_uncompress_init(void); 9void cramfs_uncompress_exit(void); 10#endif