FOSSology  4.4.0
Open Source License Compliance by Open Source Software
ununpack-ar.h
1 /*
2  Ununpack-ar.h: Headers for unpacking an ar file
3 
4  SPDX-FileCopyrightText: © 2007 Hewlett-Packard Development Company, L.P.
5 
6  SPDX-License-Identifier: GPL-2.0-only
7 */
8 #ifndef UNPACK_AR_H
9 #define UNPACK_AR_H
10 
11 int ExtractAR (char *Source, char *Destination);
12 
13 #endif
int ExtractAR(char *Source, char *Destination)
Given an AR file, extract the contents to the directory. This uses the command ar.
Definition: ununpack-ar.c:26