disabled_queries_parser.h 579 B

12345678910111213141516
  1. // Copyright 2018 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef THIRD_PARTY_SQLITE_FUZZ_DISABLED_QUERIES_PARSER_H_
  5. #define THIRD_PARTY_SQLITE_FUZZ_DISABLED_QUERIES_PARSER_H_
  6. #include <set>
  7. #include <string>
  8. namespace sql_fuzzer {
  9. // |query_list| should be a list of disabled queries separated only by commas.
  10. std::set<std::string> ParseDisabledQueries(std::string query_list);
  11. } // namespace sql_fuzzer
  12. #endif // THIRD_PARTY_SQLITE_FUZZ_DISABLED_QUERIES_PARSER_H_