diff options
Diffstat (limited to 'lib/charset/charset.h')
-rw-r--r-- | lib/charset/charset.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/charset/charset.h b/lib/charset/charset.h index 6ff19bc..78dc94e 100644 --- a/lib/charset/charset.h +++ b/lib/charset/charset.h @@ -81,9 +81,14 @@ class CharsetConverter return encoded_line; } - private: + /* Convert a EBU Latin byte stream to a UTF-8 encoded string. + * Invalid input characters are converted to ⁇ (unicode U+2047). + */ + std::string convert_ebu_to_utf8(const std::string& str); + private: std::vector<uint32_t> m_conversion_table; }; + #endif |