mirror of
https://github.com/QuasarApp/LIEF.git
synced 2025-04-27 21:04:32 +00:00
7 lines
160 B
C++
7 lines
160 B
C++
#include <LIEF/LIEF.hpp>
|
|
|
|
int main(int argc, char** argv) {
|
|
std::unique_ptr<LIEF::ELF::Binary> binary{LIEF::ELF::Parser::parse("/usr/bin/ls")};
|
|
return 0;
|
|
}
|