delta_common.h revision 207753
1231990Smp///////////////////////////////////////////////////////////////////////////////
283098Smp//
383098Smp/// \file       delta_common.h
483098Smp/// \brief      Common stuff for Delta encoder and decoder
583098Smp//
683098Smp//  Author:     Lasse Collin
7231990Smp//
8231990Smp//  This file has been put into the public domain.
9231990Smp//  You can do whatever you want with this file.
10231990Smp//
1183098Smp///////////////////////////////////////////////////////////////////////////////
12231990Smp
13231990Smp#ifndef LZMA_DELTA_COMMON_H
14231990Smp#define LZMA_DELTA_COMMON_H
15231990Smp
1683098Smp#include "common.h"
17
18extern uint64_t lzma_delta_coder_memusage(const void *options);
19
20#endif
21