Kernel  |  4.1

下载     查看原文件
C++程序  |  10行  |  83 B
#include <zlib.h>

int main(void)
{
	z_stream zs;

	inflateInit(&zs);
	return 0;
}