aboutsummaryrefslogtreecommitdiff
path: root/src/utf8.hh
diff options
context:
space:
mode:
authorJorge Arellano Cid <jcid@dillo.org>2010-02-16 11:54:18 -0300
committerJorge Arellano Cid <jcid@dillo.org>2010-02-16 11:54:18 -0300
commitd9f18c3af927a5c69fd94fe5640eaac5c8e2574e (patch)
tree9cdde824b3b8b02002097dd53a4025023afdd0d0 /src/utf8.hh
parentc41381ed695b3553b0454adcffca0d6a0e5520e9 (diff)
parentceb4a77cb81853fb7e7ca6f3c10f8e625f585496 (diff)
merge
Diffstat (limited to 'src/utf8.hh')
-rw-r--r--src/utf8.hh3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/utf8.hh b/src/utf8.hh
index fd1fb87e..4ded50b8 100644
--- a/src/utf8.hh
+++ b/src/utf8.hh
@@ -15,6 +15,9 @@ extern "C" {
*/
static const char utf8_replacement_char[] = "\xEF\xBF\xBD";
+/* Unicode zero width space U+200B */
+static const char utf8_zero_width_space[] = "\xE2\x80\x8B";
+
uint_t a_Utf8_end_of_char(const char *str, uint_t i);
uint_t a_Utf8_decode(const char*, const char* end, int* len);
int a_Utf8_encode(unsigned int ucs, char *buf);