/* * Copyright (c) 2020, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include namespace Web { namespace HTML { struct EntityMatch { Vector code_points; StringView entity; }; Optional code_points_from_entity(const StringView&); } }