1
0
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
312 B

#include <cstdint>
#include <Magick++/Blob.h>
#include <Magick++/Image.h>
#define FUZZ_MAX_SIZE 128
#include "utils.cc"
#include "encoder_utils.cc"
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
return fuzzEncoderWithStringFilename("plasma", Data, Size);
}
#include "travis.cc"