summaryrefslogtreecommitdiff
path: root/AK/UnicodeUtils.h
AgeCommit message (Collapse)Author
2022-01-18AK: Remove now-unused AK::UnicodeUtils methodsTimothy Flynn
2021-10-15LibC: Implement wcrtombDaniel Bertalan
This function converts a single wide character into its multibyte representation (UTF-8 in our case). It is called from libc++'s `std::basic_ostream<wchar_t>::flush`, which gets called at program exit from a global destructor in order to flush `std::wcout`.
2021-05-20AK: Add UnicodeUtils with Unicode-related helper functionsMax Wipfli
This introduces the UnicodeUtils file, which contains helper functions related to Unicode. This is in contrast to StringUtils, whose functions are not directly related to Unicode and are, in theory, encoding-agnostic.