mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
21 lines
383 B
C
21 lines
383 B
C
|
/*
|
||
|
* Copyright (c) 2021, Max Wipfli <mail@maxwipfli.ch>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <AK/Forward.h>
|
||
|
|
||
|
namespace AK::UnicodeUtils {
|
||
|
|
||
|
constexpr bool is_unicode_control_code_point(u32 code_point)
|
||
|
{
|
||
|
return code_point < 0x20 || (code_point >= 0x80 && code_point < 0xa0);
|
||
|
}
|
||
|
|
||
|
Optional<StringView> get_unicode_control_code_point_alias(u32);
|
||
|
|
||
|
}
|