diff options
| author | davidcunado-arm <david.cunado@arm.com> | 2018-02-06 05:12:28 +0000 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-02-06 05:12:28 +0000 | 
| commit | 9fd2f13bd608832260300640970f73c62357c684 (patch) | |
| tree | 149d13158075ab08cccff2710ee8bedd0406d2c1 /include/lib | |
| parent | 10787b0519afce1e887a935789b2d624849856a9 (diff) | |
| parent | 8951b058fce077dab7afcd86c532ec0fc0200352 (diff) | |
Merge pull request #1224 from masahir0y/gzip
Support GZIP-compressed images for faster loading and verification
Diffstat (limited to 'include/lib')
| -rw-r--r-- | include/lib/zlib/tf_gunzip.h | 16 | 
1 files changed, 16 insertions, 0 deletions
| diff --git a/include/lib/zlib/tf_gunzip.h b/include/lib/zlib/tf_gunzip.h new file mode 100644 index 00000000..46d20eb8 --- /dev/null +++ b/include/lib/zlib/tf_gunzip.h @@ -0,0 +1,16 @@ +/* + * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved. + * + * SPDX-License-Identifier: BSD-3-Clause + */ + +#ifndef __TF_GUNZIP_H__ +#define __TF_GUNZIP_H__ + +#include <stddef.h> +#include <stdint.h> + +int gunzip(uintptr_t *in_buf, size_t in_len, uintptr_t *out_buf, +	   size_t out_len, uintptr_t work_buf, size_t work_len); + +#endif /* __TF_GUNZIP_H___ */ | 
