diff options
Diffstat (limited to 'src/core/utf8.h')
-rw-r--r-- | src/core/utf8.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/utf8.h b/src/core/utf8.h index 09397f69..50ee0886 100644 --- a/src/core/utf8.h +++ b/src/core/utf8.h @@ -17,7 +17,7 @@ int mk_wcwidth(unichar c); /* Advance the str pointer one character further; return the number of columns * occupied by the skipped character. */ -int advance(char const **str, gboolean utf8); +int string_advance(char const **str, gboolean utf8); #define unichar_isprint(c) (((c) & ~0x80) >= 32) #define is_utf8_leading(c) (((c) & 0xc0) != 0x80) |