Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

11 lines
281 B
C++

#include <iostream>
#include <LIEF/LIEF.hpp>
#include <LIEF/version.h>
int main()
{
std::cout << "access flags public = " << LIEF::DEX::to_string(LIEF::DEX::access_flags_list[1]) << std::endl;
std::cout << "Version = " << LIEF_VERSION << std::endl;
return 0;
}