/src/librevenge/src/fuzz/zipfuzzer.cpp
Line | Count | Source |
1 | | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
2 | | /* librevenge |
3 | | * Version: MPL 2.0 / LGPLv2.1+ |
4 | | * |
5 | | * This Source Code Form is subject to the terms of the Mozilla Public |
6 | | * License, v. 2.0. If a copy of the MPL was not distributed with this |
7 | | * file, You can obtain one at http://mozilla.org/MPL/2.0/. |
8 | | * |
9 | | * Alternatively, the contents of this file may be used under the terms |
10 | | * of the GNU Lesser General Public License Version 2.1 or later |
11 | | * (LGPLv2.1+), in which case the provisions of the LGPLv2.1+ are |
12 | | * applicable instead of those above. |
13 | | */ |
14 | | |
15 | | #include <cstdint> |
16 | | #include <cstdlib> |
17 | | |
18 | | #include <librevenge-stream/librevenge-stream.h> |
19 | | |
20 | | #include "commonfuzzer.h" |
21 | | |
22 | | extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) |
23 | 1.62M | { |
24 | 1.62M | librevenge::RVNGStringStream input(data, size); |
25 | 1.62M | fuzz::testStructuredStream(input); |
26 | 1.62M | return 0; |
27 | 1.62M | } |
28 | | |
29 | | /* vim:set shiftwidth=2 softtabstop=2 expandtab: */ |