summaryrefslogtreecommitdiff
path: root/zlib-1.1.4/infcodes.h
diff options
context:
space:
mode:
authorEric Norum <WENorum@lbl.gov>2003-05-27 21:15:03 +0000
committerEric Norum <WENorum@lbl.gov>2003-05-27 21:15:03 +0000
commitb92d90caf1ed6f6a7c9edcfc873bad4efc7b750c (patch)
tree3bc7b2a4e3904dd3f39e302929ec2e40656311f6 /zlib-1.1.4/infcodes.h
parent35cd0f14a6e775e75f8bb06be9f8909b6694df2f (diff)
Add zlib to RTEMS add-ons.
Diffstat (limited to 'zlib-1.1.4/infcodes.h')
-rw-r--r--zlib-1.1.4/infcodes.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/zlib-1.1.4/infcodes.h b/zlib-1.1.4/infcodes.h
new file mode 100644
index 0000000..46821a0
--- /dev/null
+++ b/zlib-1.1.4/infcodes.h
@@ -0,0 +1,27 @@
+/* infcodes.h -- header to use infcodes.c
+ * Copyright (C) 1995-2002 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 ));
+