mirror of
https://git.tukaani.org/xz.git
synced 2025-02-23 08:58:31 +00:00
20 lines
473 B
C
20 lines
473 B
C
// SPDX-License-Identifier: 0BSD
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
/// \file delta_common.h
|
|
/// \brief Common stuff for Delta encoder and decoder
|
|
//
|
|
// Author: Lasse Collin
|
|
//
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef LZMA_DELTA_COMMON_H
|
|
#define LZMA_DELTA_COMMON_H
|
|
|
|
#include "common.h"
|
|
|
|
extern uint64_t lzma_delta_coder_memusage(const void *options);
|
|
|
|
#endif
|