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

Configure Feed

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

at v3.3-rc2 10 lines 233 B view raw
1#ifndef INFLATE_H 2#define INFLATE_H 3 4int gunzip(unsigned char *inbuf, int len, 5 int(*fill)(void*, unsigned int), 6 int(*flush)(void*, unsigned int), 7 unsigned char *output, 8 int *pos, 9 void(*error_fn)(char *x)); 10#endif