diff options
author | Shawn Landden <shawn@churchofgit.com> | 2015-10-31 20:39:15 -0700 |
---|---|---|
committer | Shawn Landden <shawn@churchofgit.com> | 2015-10-31 21:00:57 -0700 |
commit | 025b4c410577a10692c608e7dbad712655abb858 (patch) | |
tree | 3de2fe13c9a9d9fd778abdcfb1abbb97c202e834 /src/basic/string-util.c | |
parent | 534e8f89d6367cd0e9e17fff67880fb430071d01 (diff) |
utf8.[ch]: use char32_t and char16_t instead of int, int32_t, int16_t
rework C11 utf8.[ch] to use char32_t instead of uint32_t when referring
to unicode chars, to make things more expressive.
Diffstat (limited to 'src/basic/string-util.c')
-rw-r--r-- | src/basic/string-util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/basic/string-util.c b/src/basic/string-util.c index 63b9b79df9..4583a3ce2e 100644 --- a/src/basic/string-util.c +++ b/src/basic/string-util.c @@ -413,7 +413,7 @@ char *ellipsize_mem(const char *s, size_t old_length, size_t new_length, unsigne k = 0; for (i = s; k < x && i < s + old_length; i = utf8_next_char(i)) { - int c; + char32_t c; c = utf8_encoded_to_unichar(i); if (c < 0) @@ -425,7 +425,7 @@ char *ellipsize_mem(const char *s, size_t old_length, size_t new_length, unsigne x ++; for (j = s + old_length; k < new_length && j > i; ) { - int c; + char32_t c; j = utf8_prev_char(j); c = utf8_encoded_to_unichar(j); |