|
|
|
|
|
|
|
|
// look for multibyte characters to increase the number of bytes to remove |
|
|
// look for multibyte characters to increase the number of bytes to remove |
|
|
for (len_ending = i = (end_type & 0x3f); i > 0; i--) { // num.of characters of the suffix |
|
|
for (len_ending = i = (end_type & 0x3f); i > 0; i--) { // num.of characters of the suffix |
|
|
word_end--; |
|
|
word_end--; |
|
|
while ((*word_end & 0xc0) == 0x80) { |
|
|
|
|
|
|
|
|
while (word_end >= word && (*word_end & 0xc0) == 0x80) { |
|
|
word_end--; // for multibyte characters |
|
|
word_end--; // for multibyte characters |
|
|
len_ending++; |
|
|
len_ending++; |
|
|
} |
|
|
} |