12 lines
No EOL
262 B
C
12 lines
No EOL
262 B
C
#ifndef LIBMINEZIPER_H
|
|
#define LIBMINEZIPER_H
|
|
|
|
#include <stdbool.h>
|
|
#include "libmineziper_bitstream.h"
|
|
#include "libmineziper_huffman_tree.h"
|
|
#include "libmineziper_zip.h"
|
|
|
|
int get_uncompressed_size(zip* in);
|
|
bool scan_zip(char* zip_data, int zip_size);
|
|
|
|
#endif |