FOSSology
4.4.0
Open Source License Compliance by Open Source Software
|
The universal unpacker code to unpack an ISO file system. More...
Go to the source code of this file.
Functions | |
mode_t | GetISOMode (char *Line) |
Given a line in drwxrwxrwx format, convert it to a numeric mode. More... | |
int | ExtractISO (char *Source, char *Destination) |
Given an ISO image and a directory, extract the image to the directory. More... | |
The universal unpacker code to unpack an ISO file system.
Definition in file ununpack-iso.c.
int ExtractISO | ( | char * | Source, |
char * | Destination | ||
) |
Given an ISO image and a directory, extract the image to the directory.
ISO images have magic type "application/x-iso". This can unpack any known ISO9660 format including: ISO9660, Rock Ridge, Joliet, and El Torrito.
Uses the following external commands: isoinfo grep
Source | |
Destination |
Definition at line 68 of file ununpack-iso.c.
mode_t GetISOMode | ( | char * | Line | ) |
Given a line in drwxrwxrwx
format, convert it to a numeric mode.
Line |
Definition at line 24 of file ununpack-iso.c.