retdec
|
Classes | |
class | ArchiveWrapper |
Functions | |
bool | isArchive (const std::string &path) |
bool | isThinArchive (const std::string &path) |
bool | isNormalArchive (const std::string &path) |
bool | isFatMachOArchive (const std::string &path) |
Library for ar archive functions.
bool retdec::ar_extractor::isArchive | ( | const std::string & | path | ) |
Check if file is an archive (normal or thin).
path | input file path |
true
if file is an archive, false
otherwise bool retdec::ar_extractor::isFatMachOArchive | ( | const std::string & | path | ) |
Check if file is a Mach-O Universal Binary archive.
path | input file path |
true
if file is a Mach-O archive, false
otherwise bool retdec::ar_extractor::isNormalArchive | ( | const std::string & | path | ) |
Check if file is a normal (not thin) archive.
path | input file path |
true
if file is a normal archive, false
otherwise bool retdec::ar_extractor::isThinArchive | ( | const std::string & | path | ) |
Check if file is a thin archive.
path | input file path |
true
if file is a thin archive, false
otherwise