mirror of
https://github.com/lief-project/LIEF
synced 2026-06-08 15:30:44 +00:00
11 lines
256 B
C++
11 lines
256 B
C++
#include <LIEF/LIEF.hpp>
|
|
#include <iostream>
|
|
|
|
int main(int argc, char** argv) {
|
|
if (argc != 2) {
|
|
std::cerr << "Usage: " << argv[0] << " <oat>" << '\n';
|
|
}
|
|
std::unique_ptr<LIEF::OAT::Binary> binary{LIEF::OAT::Parser::parse(argv[1])};
|
|
return 0;
|
|
}
|