blob: f3d4fcea1fdf7aa682f88817e8447ad716b6eeb2 [file] [log] [blame]
/*
* Copyright 2020 The Fuchsia Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SRC_SECURITY_SCRUTINY_UTILS_FFI_CHUNKED_DECOMPRESSOR_H_
#define SRC_SECURITY_SCRUTINY_UTILS_FFI_CHUNKED_DECOMPRESSOR_H_
#include <cstddef>
// FFI for ChunkedDecompressor::DecompressBytes
// Acts as a C bridge to the C++ ChunkedDecompress function to enable it to
// be used by the rust FFI.
extern "C" size_t zstd_chunked_decompress(const void* src, size_t src_len, void* dst,
size_t dst_capacity);
#endif // SRC_SECURITY_SCRUTINY_UTILS_FFI_CHUNKED_DECOMPRESSOR_H_