| 62 | } // namespace |
| 63 | |
| 64 | extern "C" int LLVMFuzzerInitialize(int*, char***) |
| 65 | { |
| 66 | InitMsgFormats(); |
| 67 | g_comp = new FuzzComponent(); |
| 68 | return 0; |
| 69 | } |
| 70 | |
| 71 | extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) |
| 72 | { |
nothing calls this directly
no test coverage detected