blob: 0816d2757ce589694de71acba4ec4aa0b6c953ac [file] [log] [blame]
Haibo Huangb0bee822021-02-24 15:40:15 -08001// 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
12extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size);
13
14#endif // ifndef FUZZ_H_INCLUDED