aboutsummaryrefslogtreecommitdiff
path: root/deps/zlib/inffast.h
diff options
context:
space:
mode:
authorSakitoshi2019-01-23 21:51:34 -0300
committerGitHub2019-01-23 21:51:34 -0300
commite424c297b7b714cf2f25582cf9b4fc30cba5599f (patch)
treeea7e23977f5403d1c5ed3e18b27d03e53e778810 /deps/zlib/inffast.h
parentde95fedd6981b4608cb78180e3bddde7e675223c (diff)
parentc8e850f3584ba1eea367373d76d8b768a58d6d2c (diff)
downloadpcsx_rearmed-e424c297b7b714cf2f25582cf9b4fc30cba5599f.tar.gz
pcsx_rearmed-e424c297b7b714cf2f25582cf9b4fc30cba5599f.tar.bz2
pcsx_rearmed-e424c297b7b714cf2f25582cf9b4fc30cba5599f.zip
Merge pull request #1 from libretro/master
catch up to libretro repo
Diffstat (limited to 'deps/zlib/inffast.h')
-rw-r--r--deps/zlib/inffast.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/deps/zlib/inffast.h b/deps/zlib/inffast.h
new file mode 100644
index 0000000..169a85a
--- /dev/null
+++ b/deps/zlib/inffast.h
@@ -0,0 +1,15 @@
+/* inffast.h -- header to use inffast.c
+ * Copyright (C) 1995-2003, 2010 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.
+ */
+#ifndef _INFFAST_H
+#define _INFFAST_H
+
+void ZLIB_INTERNAL inflate_fast OF((z_streamp strm, unsigned start));
+
+#endif