| 4 | #include "crow.h" |
| 5 | |
| 6 | class FuzzException : public std::exception |
| 7 | { |
| 8 | virtual const char* what() const throw() |
| 9 | { |
| 10 | return "Base64 decoding error!"; |
| 11 | } |
| 12 | }; |
| 13 | |
| 14 | extern "C" int LLVMFuzzerTestOneInput(const std::uint8_t* data, const std::size_t size) |
| 15 | { |
no outgoing calls
no test coverage detected