retdec
detection.h
Go to the documentation of this file.
1 
7 #ifndef RETDEC_AR_EXTRACTOR_DETECTION_H
8 #define RETDEC_AR_EXTRACTOR_DETECTION_H
9 
10 #include <string>
11 
12 namespace retdec {
13 namespace ar_extractor {
14 
15 bool isArchive(const std::string &path);
16 
17 bool isThinArchive(const std::string &path);
18 
19 bool isNormalArchive(const std::string &path);
20 
21 bool isFatMachOArchive(const std::string &path);
22 
23 } // namespace ar_extractor
24 } // namespace retdec
25 
26 #endif
bool isThinArchive(const std::string &path)
Definition: detection.cpp:121
bool isArchive(const std::string &path)
Definition: detection.cpp:100
bool isNormalArchive(const std::string &path)
Definition: detection.cpp:142
bool isFatMachOArchive(const std::string &path)
Definition: detection.cpp:163
Definition: archive_wrapper.h:19