mirror of
https://github.com/bol-van/zapret2
synced 2026-09-21 21:29:24 +03:00
8 lines
167 B
C
8 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);
|