| 18 | // handled; only a memory fault reaches ASan. |
| 19 | |
| 20 | extern "C" int LLVMFuzzerInitialize(int*, char***) |
| 21 | { |
| 22 | fuzz::InitEngine(); |
| 23 | GGameState.Init(); // register the default nular/unary/binary operators |
| 24 | return 0; |
| 25 | } |
| 26 | |
| 27 | extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) |
| 28 | { |
nothing calls this directly
no test coverage detected