summaryrefslogtreecommitdiff
path: root/src/inflate.h
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2021-01-26 22:06:01 +0100
committerDaniel Friesel <derf@finalrewind.org>2021-01-26 22:06:01 +0100
commit76f36fc4194147984bd007b365fcf49d4bdfd764 (patch)
tree6fd76c135787c69fc327c1b72262923c66fc4383 /src/inflate.h
parent1fa976457d60d98643567d3c2bfc2a4ed3e19817 (diff)
support multiple deflate blocks.
this library is now fully RFC 1950 and RFC 1951 compliant
Diffstat (limited to 'src/inflate.h')
-rw-r--r--src/inflate.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/inflate.h b/src/inflate.h
index 575be4a..af2b4f7 100644
--- a/src/inflate.h
+++ b/src/inflate.h
@@ -16,6 +16,7 @@
#define DEFLATE_ERR_OUTPUT_LENGTH (-6)
#define DEFLATE_ERR_FCHECK (-7)
#define DEFLATE_ERR_NLEN (-8)
+#define DEFLATE_ERR_HUFFMAN (-9)
int16_t inflate(unsigned char *input_buf, uint16_t input_len,
unsigned char *output_buf, uint16_t output_len);