9 lines
83 B
C
9 lines
83 B
C
|
|
#include <zlib.h>
|
||
|
|
|
||
|
|
int main(void)
|
||
|
|
{
|
||
|
|
z_stream zs;
|
||
|
|
|
||
|
|
inflateInit(&zs);
|
||
|
|
return 0;
|
||
|
|
}
|