aboutsummaryrefslogtreecommitdiff
path: root/deps/zlib/inffast.h
diff options
context:
space:
mode:
authorJean-André Santoni2019-01-13 11:34:07 +0700
committerGitHub2019-01-13 11:34:07 +0700
commitc8e850f3584ba1eea367373d76d8b768a58d6d2c (patch)
treeea7e23977f5403d1c5ed3e18b27d03e53e778810 /deps/zlib/inffast.h
parent28ea3e2d87c4e239d8853b10c4496f82feb9d982 (diff)
parent7795edd6c683a5b82701cfa825304ac48bf79fef (diff)
downloadpcsx_rearmed-c8e850f3584ba1eea367373d76d8b768a58d6d2c.tar.gz
pcsx_rearmed-c8e850f3584ba1eea367373d76d8b768a58d6d2c.tar.bz2
pcsx_rearmed-c8e850f3584ba1eea367373d76d8b768a58d6d2c.zip
Merge pull request #215 from libretro/kivutar/embedzlib
Embed zlib
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