mirror of
https://github.com/clearml/dropbear
synced 2025-01-31 02:46:58 +00:00
7 lines
125 B
C
7 lines
125 B
C
|
#include "fuzz.h"
|
||
|
|
||
|
int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
|
||
|
return fuzz_run_client(Data, Size, 1);
|
||
|
}
|
||
|
|