/src/dgif_target.cc
Line
Count
Source
1
#include <stdlib.h>
2
#include <stdint.h>
3
#include <string.h>
4
#include "dgif_fuzz_common.h"
5
6
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size)
7
1.35k
{
8
return fuzz_dgif_extended(Data, Size);
9
}