| 3 | #include "crow.h" |
| 4 | |
| 5 | struct DummyHandler { |
| 6 | void handle_url() {} |
| 7 | void handle_header() {} |
| 8 | void handle() {} |
| 9 | size_t stream_threshold() { return 1024*1024; } |
| 10 | }; |
| 11 | |
| 12 | extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { |
| 13 | static crow::SimpleApp app; |
nothing calls this directly
no outgoing calls
no test coverage detected