blob: a9f721644d4818eceae2976bc133e37a6649ccfa [file] [log] [blame]
K. Moon832a6942022-10-31 20:11:31 +00001// Copyright 2016 The PDFium Authors
dsinclair5a5f2512016-06-06 11:52:30 -07002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Lei Zhangfa4d93a2018-05-25 21:47:19 +00005#include "testing/fuzzers/xfa_codec_fuzzer.h"
dsinclair5a5f2512016-06-06 11:52:30 -07006
7extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
8 return XFACodecFuzzer::Fuzz(data, size, FXCODEC_IMAGE_JPG);
9}