URL.h 240 B

12345678910111213141516
  1. /*
  2. * Copyright (c) 2023, Simon Wanner <simon@skyrising.xyz>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <AK/String.h>
  8. #include <AK/URL.h>
  9. namespace Unicode {
  10. ErrorOr<URL> create_unicode_url(String const&);
  11. }