| 87 | |
| 88 | extern "C" |
| 89 | int |
| 90 | LLVMFuzzerTestOneInput( |
| 91 | const uint8_t* data, size_t size) |
| 92 | { |
| 93 | try |
| 94 | { |
| 95 | validate(string_view{ |
| 96 | reinterpret_cast<const char* |
| 97 | >(data), size}); |
| 98 | } |
| 99 | catch(...) |
| 100 | { |
| 101 | } |
| 102 | return 0; |
| 103 | } |
nothing calls this directly
no test coverage detected