libc: wcwidth: latest UCD data

This commit is contained in:
K. Lange 2023-12-28 09:48:05 +09:00
parent 194dfa560b
commit 0f02ba3d90
1 changed files with 1 additions and 3 deletions

View File

@ -872,8 +872,6 @@ int wcwidth(wchar_t wc) {
else if (wc < 0x2f00) return -1; else if (wc < 0x2f00) return -1;
else if (wc < 0x2fd6) return 2; else if (wc < 0x2fd6) return 2;
else if (wc < 0x2ff0) return -1; else if (wc < 0x2ff0) return -1;
else if (wc < 0x2ffc) return 2;
else if (wc < 0x3000) return -1;
else if (wc < 0x302a) return 2; else if (wc < 0x302a) return 2;
else if (wc < 0x302e) return 0; else if (wc < 0x302e) return 0;
else if (wc < 0x303f) return 2; else if (wc < 0x303f) return 2;
@ -889,7 +887,7 @@ int wcwidth(wchar_t wc) {
else if (wc < 0x318f) return 2; else if (wc < 0x318f) return 2;
else if (wc < 0x3190) return -1; else if (wc < 0x3190) return -1;
else if (wc < 0x31e4) return 2; else if (wc < 0x31e4) return 2;
else if (wc < 0x31f0) return -1; else if (wc < 0x31ef) return -1;
else if (wc < 0x321f) return 2; else if (wc < 0x321f) return 2;
else if (wc < 0x3220) return -1; else if (wc < 0x3220) return -1;
else if (wc < 0x3248) return 2; else if (wc < 0x3248) return 2;