delta_common.h revision 213700
1230130Smav///////////////////////////////////////////////////////////////////////////////
2230130Smav//
3230130Smav/// \file       delta_common.h
4230130Smav/// \brief      Common stuff for Delta encoder and decoder
5230130Smav//
6230130Smav//  Author:     Lasse Collin
7230130Smav//
8230130Smav//  This file has been put into the public domain.
9230130Smav//  You can do whatever you want with this file.
10230130Smav//
11230130Smav///////////////////////////////////////////////////////////////////////////////
12230130Smav
13230130Smav#ifndef LZMA_DELTA_COMMON_H
14230130Smav#define LZMA_DELTA_COMMON_H
15230130Smav
16230130Smav#include "common.h"
17230130Smav
18230130Smavextern uint64_t lzma_delta_coder_memusage(const void *options);
19230130Smav
20230130Smav#endif
21230130Smav