1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #include "FuzzingInterface.h"
7 #include "RustFuzzingTargets.h"
9 int FuzzingInitDummy(int* argc
, char*** argv
) { return 0; }
11 MOZ_FUZZING_INTERFACE_RAW(FuzzingInitDummy
, fuzz_rkv_db_file
, RkvDbFile
);
12 MOZ_FUZZING_INTERFACE_RAW(FuzzingInitDummy
, fuzz_rkv_db_name
, RkvDbName
);
13 MOZ_FUZZING_INTERFACE_RAW(FuzzingInitDummy
, fuzz_rkv_key_write
, RkvKeyWrite
);
14 MOZ_FUZZING_INTERFACE_RAW(FuzzingInitDummy
, fuzz_rkv_val_write
, RkvValWrite
);
15 MOZ_FUZZING_INTERFACE_RAW(FuzzingInitDummy
, fuzz_rkv_calls
, RkvCalls
);