aboutsummaryrefslogtreecommitdiffstats
path: root/zlib/inffast.h
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>1998-02-12 14:39:08 +0000
committerWerner Koch <[email protected]>1998-02-12 14:39:08 +0000
commitfec94908c399bdcc68b61e9142a2e4602312936f (patch)
tree761673f7e6f57d2543143eda432781459b94cefa /zlib/inffast.h
parentbug fixes (diff)
downloadgnupg-fec94908c399bdcc68b61e9142a2e4602312936f.tar.gz
gnupg-fec94908c399bdcc68b61e9142a2e4602312936f.zip
added zlib and reorgnaized some stuff
Diffstat (limited to '')
-rw-r--r--zlib/inffast.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/zlib/inffast.h b/zlib/inffast.h
new file mode 100644
index 000000000..8cc644efb
--- /dev/null
+++ b/zlib/inffast.h
@@ -0,0 +1,17 @@
+/* inffast.h -- header to use inffast.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.
+ */
+
+extern int inflate_fast OF((
+ uInt,
+ uInt,
+ inflate_huft *,
+ inflate_huft *,
+ inflate_blocks_statef *,
+ z_streamp ));