blob: 83046fdc029e93163cd61b915a430b2c60ccd69a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
* Copyright (c) 2021, Luke Wilde <lukew@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <AK/StringView.h>
#include <LibRegex/Regex.h>
#include <stddef.h>
#include <stdint.h>
extern "C" int LLVMFuzzerTestOneInput(uint8_t const* data, size_t size)
{
auto pattern = StringView(static_cast<unsigned char const*>(data), size);
[[maybe_unused]] auto re = Regex<PosixBasic>(pattern);
return 0;
}
|