diff options
author | sereglond <sereglond@yandex-team.ru> | 2022-02-10 16:47:46 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:47:46 +0300 |
commit | eb3d925534734c808602b31b38b953677f0a279f (patch) | |
tree | 4222ef8dc375ee9f30b68a004ee42a0845e005b6 /contrib/libs/pire | |
parent | 4c8065245df3ea26b7757bcb1f8218df287f9148 (diff) | |
download | ydb-eb3d925534734c808602b31b38b953677f0a279f.tar.gz |
Restoring authorship annotation for <sereglond@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'contrib/libs/pire')
-rw-r--r-- | contrib/libs/pire/pire/stub/utf8.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/contrib/libs/pire/pire/stub/utf8.h b/contrib/libs/pire/pire/stub/utf8.h index 51ea0479d4..b8e63ac239 100644 --- a/contrib/libs/pire/pire/stub/utf8.h +++ b/contrib/libs/pire/pire/stub/utf8.h @@ -2,18 +2,18 @@ #include <library/cpp/charset/codepage.h> #include <util/charset/unidata.h> - -inline wchar32 to_lower(wchar32 c) { - return ToLower(c); -} -inline wchar32 to_upper(wchar32 c) { - return ToUpper(c); -} - -inline bool is_digit(wchar32 c) { + +inline wchar32 to_lower(wchar32 c) { + return ToLower(c); +} +inline wchar32 to_upper(wchar32 c) { + return ToUpper(c); +} + +inline bool is_digit(wchar32 c) { return IsDigit(c); -} - -inline bool is_upper(wchar32 c) { - return IsUpper(c); -} +} + +inline bool is_upper(wchar32 c) { + return IsUpper(c); +} |