RT-AC56 3.0.0.4.374.37 core
[tomato.git] / release / src-rt-6.x.4708 / tools / misc / xz / src / liblzma / delta / delta_common.h
blob7e7e1baaf680797e4764c632be07f5aa522a578c
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 /// \file delta_common.h
4 /// \brief Common stuff for Delta encoder and decoder
5 //
6 // Author: Lasse Collin
7 //
8 // This file has been put into the public domain.
9 // You can do whatever you want with this file.
11 ///////////////////////////////////////////////////////////////////////////////
13 #ifndef LZMA_DELTA_COMMON_H
14 #define LZMA_DELTA_COMMON_H
16 #include "common.h"
18 extern uint64_t lzma_delta_coder_memusage(const void *options);
20 #endif