/src/curl_fuzzer/fuzzer_entrypoints/curl_fuzzer.cc
Line | Count | Source |
1 | | /* |
2 | | * Copyright (C) Max Dymond, <cmeister2@gmail.com>, et al. |
3 | | * |
4 | | * SPDX-License-Identifier: curl |
5 | | */ |
6 | | |
7 | | #include "legacy_fuzzer.h" |
8 | | |
9 | | // Fuzz Introspector pairs a static profile with runtime coverage by target |
10 | | // basename. This literal, same-named entrypoint keeps that pairing precise |
11 | | // while all protocol binaries continue to share the TLV implementation. |
12 | | extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) |
13 | 264k | { |
14 | 264k | return LegacyFuzzerTestOneInput(data, size); |
15 | 264k | } |