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