/
githubmirror
/
libpsl
Обзор
Документация
Войти
/
githubmirror
/
libpsl
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
fuzz/fuzzer.h
23 строки
430 B
Tim Rühsen
Simplify license headers
12 июл 2026, 20:10
12 июл 2026, 20:10
da54796
Код
Авторство
О чём код?
/* * SPDX-License-Identifier: MIT * * See the LICENSE file in the root directory for details and copyrights. * * This file is part of libpsl. * */ #include <config.h> #include <stddef.h> /* size_t */ #ifdef HAVE_STDINT_H #include <stdint.h> /* uint8_t */ #elif defined (_MSC_VER) typedef unsigned __int8 uint8_t; #endif #ifdef __cplusplus extern "C" #endif int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size);