blob: 741ba501424f2bba5640fc34be768308c17fc0c0 [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
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +00007#ifndef TF_GUNZIP_H
8#define TF_GUNZIP_H
Masahiro Yamada55a040e2018-01-26 11:42:01 +09009
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
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +000016#endif /* TF_GUNZIP_H */