1234567891011121314 |
- /*
- * Copyright (c) 2021, the SerenityOS developers.
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #include <LibCompress/Gzip.h>
- #include <stdio.h>
- extern "C" int LLVMFuzzerTestOneInput(uint8_t const* data, size_t size)
- {
- auto result = Compress::GzipDecompressor::decompress_all(ReadonlyBytes { data, size });
- return 0;
- }
|