Haibo Huang | b0bee82 | 2021-02-24 15:40:15 -0800 | [diff] [blame] | 1 | // Copyright 2007-2010 The JsonCpp Authors |
2 | // Distributed under MIT license, or public domain if desired and | ||||
3 | // recognized in your jurisdiction. | ||||
4 | // See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE | ||||
5 | |||||
6 | #ifndef FUZZ_H_INCLUDED | ||||
7 | #define FUZZ_H_INCLUDED | ||||
8 | |||||
9 | #include <cstddef> | ||||
10 | #include <stdint.h> | ||||
11 | |||||
12 | extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size); | ||||
13 | |||||
14 | #endif // ifndef FUZZ_H_INCLUDED |