1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:47:35 +00:00

AK: Add Utf16View for decoding UTF-16 strings

Also includes a way to transcode from and to UTF-8 strings.
This commit is contained in:
Timothy Flynn 2021-07-19 09:02:13 -04:00 committed by Andreas Kling
parent bcf5e5ee5a
commit 9b83cd1abf
5 changed files with 595 additions and 0 deletions

View file

@ -29,6 +29,7 @@ class StringView;
class Time;
class URL;
class FlyString;
class Utf16View;
class Utf32View;
class Utf8View;
class InputStream;
@ -168,6 +169,7 @@ using AK::StringView;
using AK::Time;
using AK::Traits;
using AK::URL;
using AK::Utf16View;
using AK::Utf32View;
using AK::Utf8View;
using AK::Vector;