aboutsummaryrefslogtreecommitdiffstats
path: root/lib/zlib/inffast.h
diff options
context:
space:
mode:
authordavidcunado-arm <david.cunado@arm.com>2018-02-06 05:12:28 +0000
committerGitHub <noreply@github.com>2018-02-06 05:12:28 +0000
commit9fd2f13bd608832260300640970f73c62357c684 (patch)
tree149d13158075ab08cccff2710ee8bedd0406d2c1 /lib/zlib/inffast.h
parent10787b0519afce1e887a935789b2d624849856a9 (diff)
parent8951b058fce077dab7afcd86c532ec0fc0200352 (diff)
downloadplatform_external_arm-trusted-firmware-9fd2f13bd608832260300640970f73c62357c684.tar.gz
platform_external_arm-trusted-firmware-9fd2f13bd608832260300640970f73c62357c684.tar.bz2
platform_external_arm-trusted-firmware-9fd2f13bd608832260300640970f73c62357c684.zip
Merge pull request #1224 from masahir0y/gzip
Support GZIP-compressed images for faster loading and verification
Diffstat (limited to 'lib/zlib/inffast.h')
-rw-r--r--lib/zlib/inffast.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/zlib/inffast.h b/lib/zlib/inffast.h
new file mode 100644
index 000000000..e5c1aa4ca
--- /dev/null
+++ b/lib/zlib/inffast.h
@@ -0,0 +1,11 @@
+/* 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.
+ */
+
+void ZLIB_INTERNAL inflate_fast OF((z_streamp strm, unsigned start));