Skip to content
Snippets Groups Projects
lzw.h 218 B
#ifndef PDF_LZW_H
#define PDF_LZW_H

#include <hammer/hammer.h>

void init_LZW_parser();
HParseResult * parse_LZW_data(const uint8_t* input, size_t length);
void init_LZW_context(int earlychange);

#endif // PDF_LZW_H