mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-08 08:11:34 +00:00
20 lines
501 B
C
20 lines
501 B
C
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
// libFuzzer interface is thin, so we don't include any libFuzzer headers.
|
|
int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size);
|
|
__attribute__((weak)) int LLVMFuzzerInitialize(int *argc, char ***argv);
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
if (LLVMFuzzerInitialize) LLVMFuzzerInitialize(&argc, &argv);
|
|
// Do any other expensive one-time initialization here.
|
|
|
|
uint8_t dummy_input[1] = {0};
|
|
LLVMFuzzerTestOneInput(dummy_input, 1);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|