diff options
author | Xavier G <xavier.github@kindwolf.org> | 2016-05-13 01:39:14 +0200 |
---|---|---|
committer | Xavier G <xavier.github@kindwolf.org> | 2016-05-13 01:39:14 +0200 |
commit | 5c74a3bb88db0fa32c459f8494e9f5a62a821baa (patch) | |
tree | ed349cfa4629686ab3a5e54d6aab556352c70faa /src/core/utf8.c | |
parent | 5538578820550c1a62dc4d0e6451332229eeee75 (diff) | |
download | irssi-5c74a3bb88db0fa32c459f8494e9f5a62a821baa.zip |
Move advance() from fe-common/core to core.
Diffstat (limited to 'src/core/utf8.c')
-rw-r--r-- | src/core/utf8.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/core/utf8.c b/src/core/utf8.c index 1ab6def9..6daa878a 100644 --- a/src/core/utf8.c +++ b/src/core/utf8.c @@ -26,3 +26,18 @@ #include "module.h" #include "wcwidth.c" +int advance(char const **str, gboolean utf8) +{ + if (utf8) { + gunichar c; + + c = g_utf8_get_char(*str); + *str = g_utf8_next_char(*str); + + return unichar_isprint(c) ? mk_wcwidth(c) : 1; + } else { + *str += 1; + + return 1; + } +} |