blob: 665b8719d018cd676469272419a857b4cc48e299 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef THIRD_PARTY_SQLITE_FUZZ_DISABLED_QUERIES_PARSER_H_
#define THIRD_PARTY_SQLITE_FUZZ_DISABLED_QUERIES_PARSER_H_
#include <set>
#include <string>
namespace sql_fuzzer {
// |query_list| should be a list of disabled queries separated only by commas.
std::set<std::string> ParseDisabledQueries(std::string query_list);
} // namespace sql_fuzzer
#endif // THIRD_PARTY_SQLITE_FUZZ_DISABLED_QUERIES_PARSER_H_