mirror of
https://github.com/bol-van/zapret2.git
synced 2026-03-13 22:03:09 +00:00
9 lines
167 B
C
9 lines
167 B
C
#pragma once
|
|
|
|
#include <stdio.h>
|
|
#include <zlib.h>
|
|
#include <stdbool.h>
|
|
|
|
int z_readfile(FILE *F, char **buf, size_t *size, size_t extra_alloc);
|
|
bool is_gzip(FILE* F);
|