| 24 | |
| 25 | extern "C" |
| 26 | int |
| 27 | LLVMFuzzerTestOneInput( |
| 28 | const uint8_t* data, size_t size) |
| 29 | { |
| 30 | try |
| 31 | { |
| 32 | string_view s{reinterpret_cast< |
| 33 | const char*>(data), size}; |
| 34 | fuzz_parse(s); |
| 35 | } |
| 36 | catch(...) |
| 37 | { |
| 38 | } |
| 39 | return 0; |
| 40 | } |
nothing calls this directly
no test coverage detected