Masahiro Yamada | 55a040e | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved. |
| 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
Antonio Nino Diaz | 5eb8837 | 2018-11-08 10:20:19 +0000 | [diff] [blame] | 7 | #ifndef TF_GUNZIP_H |
| 8 | #define TF_GUNZIP_H |
Masahiro Yamada | 55a040e | 2018-01-26 11:42:01 +0900 | [diff] [blame] | 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 | |
Antonio Nino Diaz | 5eb8837 | 2018-11-08 10:20:19 +0000 | [diff] [blame] | 16 | #endif /* TF_GUNZIP_H */ |