Read next token

This commit is contained in:
atxr 2024-02-20 12:33:44 +01:00
parent 2ff199072e
commit 48aba6093b
2 changed files with 29 additions and 1 deletions

View file

@ -1,10 +1,13 @@
#ifndef LIBMINEZIPER_H
#define LIBMINEZIPER_H
#include "libmineziper_zip.h"
#include <stdbool.h>
#include "libmineziper_bitstream.h"
#include "libmineziper_huffman_tree.h"
#include "libmineziper_zip.h"
bool detect_overlaps(char* filename);
int get_uncompressed_size(zip* in);
int next_token(bitstream* bs, tree t);
#endif