1 /* 2 * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef __TF_GUNZIP_H__ 8 #define __TF_GUNZIP_H__ 9 10 #include <stddef.h> 11 #include <stdint.h> 12 13 int gunzip(uintptr_t *in_buf, size_t in_len, uintptr_t *out_buf, 14 size_t out_len, uintptr_t work_buf, size_t work_len); 15 16 #endif /* __TF_GUNZIP_H___ */ 17