4#ifndef FTXUI_SCREEN_STRING_HPP
5#define FTXUI_SCREEN_STRING_HPP
11std::string
to_string(
const std::wstring& s);
19int string_width(
const std::string&);
23std::vector<std::string> Utf8ToGlyphs(
const std::string& input);
27std::vector<int> CellToGlyphIndex(
const std::string& input);
The FTXUI ftxui:: namespace.
std::wstring to_wstring(const std::string &s)
Convert a UTF8 std::string into a std::wstring.
std::string to_string(const std::wstring &s)
Convert a std::wstring into a UTF8 std::string.