tf_gunzip.h 357 Bytes
Newer Older
Masahiro Yamada's avatar
Masahiro Yamada committed
1
2
3
4
5
6
/*
 * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

7
8
#ifndef TF_GUNZIP_H
#define TF_GUNZIP_H
Masahiro Yamada's avatar
Masahiro Yamada committed
9
10
11
12
13
14
15

#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);

16
#endif /* TF_GUNZIP_H */