AbstractOperations.h 341 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (c) 2022, Luke Wilde <lukew@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <AK/Forward.h>
  8. namespace Web::Fetch {
  9. enum class HttpQuotedStringExtractValue {
  10. No,
  11. Yes,
  12. };
  13. String collect_an_http_quoted_string(GenericLexer& lexer, HttpQuotedStringExtractValue extract_value);
  14. }