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