Logo ROOT  
Reference Guide
Loading...
Searching...
No Matches
ZipLZ4.h
Go to the documentation of this file.
1// Author: Brian Bockelman March 2015
2
3/*************************************************************************
4 * Copyright (C) 1995-2017, Rene Brun and Fons Rademakers. *
5 * All rights reserved. *
6 * *
7 * For the licensing terms see $ROOTSYS/LICENSE. *
8 * For the list of contributors see $ROOTSYS/README/CREDITS. *
9 *************************************************************************/
10
11#ifndef ROOT_ZipLZ4
12#define ROOT_ZipLZ4
13
14// NOTE: the ROOT compression libraries aren't consistently written in C++; hence the
15// #ifdef's to avoid problems with C code.
16#ifdef __cplusplus
17extern "C" {
18#endif
19void R__zipLZ4(int cxlevel, int *srcsize, const char *src, int *tgtsize, char *tgt, int *irep);
20void R__unzipLZ4(int *srcsize, const unsigned char *src, int *tgtsize, unsigned char *tgt, int *irep);
21#ifdef __cplusplus
22}
23#endif
24
25#endif
void R__unzipLZ4(int *srcsize, const unsigned char *src, int *tgtsize, unsigned char *tgt, int *irep)
Definition ZipLZ4.cxx:87
void R__zipLZ4(int cxlevel, int *srcsize, const char *src, int *tgtsize, char *tgt, int *irep)
Definition ZipLZ4.cxx:33