blob: 138afa6034c8ae54e0639d4a8be2e2f84efc58b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef __EASYLZMA_LZIP_HEADER__
#define __EASYLZMA_LZIP_HEADER__
#include "common_internal.h"
/* lzip file format documented here:
* http://download.savannah.gnu.org/releases-noredirect/lzip/manual/ */
void initializeLZIPFormatHandler(struct elzma_format_handler *hand);
#endif
|