| 122 | |
| 123 | // This function is used by libFuzzer |
| 124 | extern "C" int LLVMFuzzerInitialize(int* argc, char*** argv) |
| 125 | { |
| 126 | SetArgs(*argc, *argv); |
| 127 | initialize(); |
| 128 | return 0; |
| 129 | } |
| 130 | |
| 131 | #if defined(PROVIDE_FUZZ_MAIN_FUNCTION) |
| 132 | int main(int argc, char** argv) |
nothing calls this directly
no test coverage detected