blob: 46d20eb8aef60164820ec08bfb04f4fb3ee793e0 [file] [log] [blame]
Masahiro Yamada55a040e2018-01-26 11:42:01 +09001/*
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
13int 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___ */