2019-05-09 19:03:50 +03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <zlib.h>
|
2019-05-09 22:32:41 +03:00
|
|
|
#include <stdbool.h>
|
2019-05-09 19:03:50 +03:00
|
|
|
|
|
|
|
int z_readfile(FILE *F,char **buf,size_t *size);
|
2019-05-09 22:32:41 +03:00
|
|
|
bool is_gzip(FILE* F);
|