FOSSology  4.4.0
Open Source License Compliance by Open Source Software
ununpack-zstd.h
1 /*
2  Ununpack-sztd.h: Headers for unpacking zstd compressed files
3 
4  SPDX-FileCopyrightText: © 2023 Siemens AG
5  SPDX-FileContributor: Gaurav Mishra <mishra.gaurav@siemens.com>
6 
7  SPDX-License-Identifier: GPL-2.0-only
8 */
9 #ifndef UNPACK_ZSTD_H
10 #define UNPACK_ZSTD_H
11 
12 int ExtractZstd (char *Source, const char *OrigName, char *Destination);
13 
14 #endif
int ExtractZstd(char *Source, const char *OrigName, char *Destination)
Given a ZSTd file, extract the contents to the directory.
Definition: ununpack-zstd.c:23