Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/root/ZipLZ4.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 // Author: Brian Bockelman March 2015
0002 
0003 /*************************************************************************
0004  * Copyright (C) 1995-2017, Rene Brun and Fons Rademakers.               *
0005  * All rights reserved.                                                  *
0006  *                                                                       *
0007  * For the licensing terms see $ROOTSYS/LICENSE.                         *
0008  * For the list of contributors see $ROOTSYS/README/CREDITS.             *
0009  *************************************************************************/
0010 
0011 #ifndef ROOT_ZipLZ4
0012 #define ROOT_ZipLZ4
0013 
0014 // NOTE: the ROOT compression libraries aren't consistently written in C++; hence the
0015 // #ifdef's to avoid problems with C code.
0016 #ifdef __cplusplus
0017 extern "C" {
0018 #endif
0019 void R__zipLZ4(int cxlevel, int *srcsize, char *src, int *tgtsize, char *tgt, int *irep);
0020 void R__unzipLZ4(int *srcsize, unsigned char *src, int *tgtsize, unsigned char *tgt, int *irep);
0021 #ifdef __cplusplus
0022 }
0023 #endif
0024 
0025 #endif