1 #ifndef PDF_FOX_DECODE_H
2 #define PDF_FOX_DECODE_H
3 
4 #include <zlib.h>
5 #include <string.h>
6 #include "foxtoken.h"
7 #include "foxparse.h"
8 
9 #define ZLIB_CHUNK 16384
10 
11 extern void streamDecode(PDFToken *token, PDFSyntaxNode *filter);
12 extern void testdec(PDFToken *token);
13 
14 #endif
15