summaryrefslogtreecommitdiff
path: root/include/lib/zlib/tf_gunzip.h
blob: 46d20eb8aef60164820ec08bfb04f4fb3ee793e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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___ */