#include #include #include extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { std::vector raw = {data, data + size}; try { std::unique_ptr b{LIEF::PE::Parser::parse(raw)}; } catch (const LIEF::exception& e) { std::cout << e.what() << std::endl; } return 0; }