summaryrefslogtreecommitdiff
path: root/Meta/Lagom/Fuzzers/FuzzPBMLoader.cpp
blob: 31bfd6fa4ef418458e60ce545c3ff6489aed9789 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Copyright (c) 2020, the SerenityOS developers.
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include <LibGfx/PBMLoader.h>
#include <stddef.h>
#include <stdint.h>

extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
{
    Gfx::load_pbm_from_memory(data, size);
    return 0;
}