blob: 5af31c8f4b84f1ac85a7943e7f845acec09f2cef (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* SPDX-License-Identifier: LGPL-2.1+ */
/***
Copyright © 2018 Jonathan Rudenberg
***/
#include <stddef.h>
#include <stdint.h>
/* The entry point into the fuzzer */
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size);
|