
* Move fuzzers around some more * back to baby * this was missing.. * shuffeling shuffeling * shuffeling * md * cleanup * oops * Move foldername to underscore * more doc
10 lines
176 B
C
10 lines
176 B
C
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size);
|
|
|
|
int main() {
|
|
char buf[10] = {0};
|
|
LLVMFuzzerTestOneInput(buf, 10);
|
|
}
|