mirror of
git://git.sv.gnu.org/nano.git
synced 2024-11-29 08:03:19 +03:00
chars: speed up the counting of string length for the plain ASCII case
For UTF-8, if the most significant bit of a byte is zero, it means the character is just a single byte and we can skip the call of mblen(). For files consisting of pure ASCII bytes (between 0x00 and 0x7F), this change reduces the counting time of mbstrlen() by ninety six percent. This partially addresses https://savannah.gnu.org/bugs/?50406.
This commit is contained in:
parent
430d3bad7a
commit
cc2b19c8fd
@ -540,9 +540,13 @@ size_t mbstrlen(const char *s)
|
||||
size_t n = 0;
|
||||
|
||||
while (*s != '\0' && maxlen > 0) {
|
||||
int length = mblen(s, MAXCHARLEN);
|
||||
if ((signed char)*s < 0) {
|
||||
int length = mblen(s, MAXCHARLEN);
|
||||
|
||||
s += (length < 0 ? 1 : length);
|
||||
} else
|
||||
s++;
|
||||
|
||||
s += (length < 0 ? 1 : length);
|
||||
maxlen--;
|
||||
n++;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user