summaryrefslogtreecommitdiff
path: root/sys/lib/libz/infcodes.h
diff options
context:
space:
mode:
authorJason Downs <downsj@cvs.openbsd.org>1997-02-06 02:56:57 +0000
committerJason Downs <downsj@cvs.openbsd.org>1997-02-06 02:56:57 +0000
commit40ab3310e733696c3abaa3ad2934c9975275dfca (patch)
treebd5b3f9a272ad6516701b4a983eccf9e9e3fe1fa /sys/lib/libz/infcodes.h
parent9e2c2dbcee4a3ad77a401ec09f3cc6ae4c030520 (diff)
Add libz and make libsa aware of it. From NetBSD.
Diffstat (limited to 'sys/lib/libz/infcodes.h')
-rw-r--r--sys/lib/libz/infcodes.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/sys/lib/libz/infcodes.h b/sys/lib/libz/infcodes.h
new file mode 100644
index 00000000000..c2c38df2c06
--- /dev/null
+++ b/sys/lib/libz/infcodes.h
@@ -0,0 +1,27 @@
+/* infcodes.h -- header to use infcodes.c
+ * Copyright (C) 1995-1996 Mark Adler
+ * For conditions of distribution and use, see copyright notice in zlib.h
+ */
+
+/* WARNING: this file should *not* be used by applications. It is
+ part of the implementation of the compression library and is
+ subject to change. Applications should only use zlib.h.
+ */
+
+struct inflate_codes_state;
+typedef struct inflate_codes_state FAR inflate_codes_statef;
+
+extern inflate_codes_statef *inflate_codes_new OF((
+ uInt, uInt,
+ inflate_huft *, inflate_huft *,
+ z_streamp ));
+
+extern int inflate_codes OF((
+ inflate_blocks_statef *,
+ z_streamp ,
+ int));
+
+extern void inflate_codes_free OF((
+ inflate_codes_statef *,
+ z_streamp ));
+