mirror of
https://github.com/simdjson/simdjson
synced 2026-06-08 17:27:07 +00:00
99667f7c55
- Allows everyone to #include the same way, singleheader or not.
11 lines
226 B
C++
11 lines
226 B
C++
#include "simdjson.h"
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
#include <string>
|
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
|
|
|
|
auto ignored = simdjson::build_parsed_json(Data, Size);
|
|
|
|
return 0;
|
|
}
|