mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-19 05:33:44 -04:00
char32: use utf8proc_charwidth() instead of wcwidth(), when available
It appears to be slightly more up-to-date with recent Unicode versions. In particular, it handles the new "Symbols for Legacy Computing Supplement" block, introduced in Unicode 16. Closes #1865
This commit is contained in:
parent
f3e443ea47
commit
d3cd4ad933
2 changed files with 20 additions and 0 deletions
15
char32.h
15
char32.h
|
|
@ -8,6 +8,10 @@
|
|||
#include <wchar.h>
|
||||
#include <wctype.h>
|
||||
|
||||
#if defined(FOOT_GRAPHEME_CLUSTERING)
|
||||
#include <utf8proc.h>
|
||||
#endif
|
||||
|
||||
static inline size_t c32len(const char32_t *s) {
|
||||
return wcslen((const wchar_t *)s);
|
||||
}
|
||||
|
|
@ -69,11 +73,22 @@ static inline bool isc32graph(char32_t c32) {
|
|||
}
|
||||
|
||||
static inline int c32width(char32_t c) {
|
||||
#if defined(FOOT_GRAPHEME_CLUSTERING)
|
||||
return utf8proc_charwidth((utf8proc_int32_t)c);
|
||||
#else
|
||||
return wcwidth((wchar_t)c);
|
||||
#endif
|
||||
}
|
||||
|
||||
static inline int c32swidth(const char32_t *s, size_t n) {
|
||||
#if defined(FOOT_GRAPHEME_CLUSTERING)
|
||||
int width = 0;
|
||||
for (size_t i = 0; i < n; i++)
|
||||
width += utf8proc_charwidth((utf8proc_int32_t)s[i]);
|
||||
return width;
|
||||
#else
|
||||
return wcswidth((const wchar_t *)s, n);
|
||||
#endif
|
||||
}
|
||||
|
||||
size_t mbsntoc32(char32_t *dst, const char *src, size_t nms, size_t len);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue