| 22 | |
| 23 | // see http://llvm.org/docs/LibFuzzer.html |
| 24 | extern "C" int LLVMFuzzerTestOneInput(const uint8_t* input, size_t size) { |
| 25 | using namespace sonic_json; |
| 26 | Document dom; |
| 27 | WriteBuffer wb; |
| 28 | dom.Parse(reinterpret_cast<const char*>(input), size); |
| 29 | dom.Serialize(wb); |
| 30 | return 0; |
| 31 | } |