/src/libmwaw/src/fuzz/writenowfuzzer.cpp
Line | Count | Source |
1 | | /* -*- Mode: C++; c-default-style: "k&r"; indent-tabs-mode: nil; tab-width: 2; c-basic-offset: 2 -*- */ |
2 | | |
3 | | /* libmwaw |
4 | | * Version: MPL 2.0 / LGPLv2+ |
5 | | * |
6 | | * The contents of this file are subject to the Mozilla Public License Version |
7 | | * 2.0 (the "License"); you may not use this file except in compliance with |
8 | | * the License or as specified alternatively below. You may obtain a copy of |
9 | | * the License at http://www.mozilla.org/MPL/ |
10 | | * |
11 | | * Software distributed under the License is distributed on an "AS IS" basis, |
12 | | * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License |
13 | | * for the specific language governing rights and limitations under the |
14 | | * License. |
15 | | * |
16 | | * Major Contributor(s): |
17 | | * Copyright (C) 2017 David Tardon (dtardon@redhat.com) |
18 | | * |
19 | | * |
20 | | * All Rights Reserved. |
21 | | * |
22 | | * For minor contributions see the git repository. |
23 | | * |
24 | | * Alternatively, the contents of this file may be used under the terms of |
25 | | * the GNU Lesser General Public License Version 2 or later (the "LGPLv2+"), |
26 | | * in which case the provisions of the LGPLv2+ are applicable |
27 | | * instead of those above. |
28 | | */ |
29 | | |
30 | | #include <cstdint> |
31 | | #include <cstdlib> |
32 | | |
33 | | #include <libmwaw/libmwaw.hxx> |
34 | | |
35 | | #include <librevenge-generators/RVNGDummyTextGenerator.h> |
36 | | |
37 | | #include <librevenge-stream/librevenge-stream.h> |
38 | | |
39 | | extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) |
40 | 1.25M | { |
41 | 1.25M | librevenge::RVNGStringStream input(data, size); |
42 | 1.25M | librevenge::RVNGDummyTextGenerator generator; |
43 | 1.25M | MWAWDocument::parse(&input, &generator); |
44 | 1.25M | return 0; |
45 | 1.25M | } |
46 | | |
47 | | // vim: set filetype=cpp tabstop=2 shiftwidth=2 cindent autoindent smartindent noexpandtab: |