mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
02a8683266
This API only perform small allocations, and is only used by LibJS.
35 lines
728 B
C++
35 lines
728 B
C++
/*
|
|
* Copyright (c) 2022, mat
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Error.h>
|
|
#include <AK/Forward.h>
|
|
#include <AK/Optional.h>
|
|
#include <AK/Span.h>
|
|
#include <AK/String.h>
|
|
#include <AK/StringView.h>
|
|
#include <LibUnicode/Forward.h>
|
|
|
|
namespace Unicode {
|
|
|
|
Optional<CodePointDecomposition const> code_point_decomposition(u32 code_point);
|
|
Optional<CodePointDecomposition const> code_point_decomposition_by_index(size_t index);
|
|
|
|
enum class NormalizationForm {
|
|
NFD,
|
|
NFC,
|
|
NFKD,
|
|
NFKC
|
|
};
|
|
|
|
NormalizationForm normalization_form_from_string(StringView form);
|
|
StringView normalization_form_to_string(NormalizationForm form);
|
|
|
|
String normalize(StringView string, NormalizationForm form);
|
|
|
|
}
|