ladybird/Userland/Libraries/LibUnicode/Forward.h
Timothy Flynn f5c1bbc00b LibUnicode: Parse UCD Scripts.txt and generate as a Unicode property
There are a couple of minor nuances with parsing script values, compared
to other properties. In Scripts.txt, the UCD file lists the full name of
each script; other properties, like General Category, list the shorter
name in their primary files. This means that the aliases listed in
PropertyValueAliases.txt are reversed for script values.
2021-08-04 13:50:32 +01:00

23 lines
358 B
C++

/*
* Copyright (c) 2021, Tim Flynn <trflynn89@pm.me>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Types.h>
namespace Unicode {
enum class Condition;
enum class GeneralCategory : u64;
enum class Locale;
enum class Property : u64;
enum class Script;
enum class WordBreakProperty;
struct SpecialCasing;
struct UnicodeData;
}