mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 05:25:34 +00:00
Merge 80a95029c4
into 770c4b8042
This commit is contained in:
commit
2dc81b57c5
1 changed files with 1 additions and 3 deletions
|
@ -462,11 +462,9 @@ getLink(char16_t ch) {
|
|||
*/
|
||||
static void
|
||||
countSpaces(char16_t *dest, int32_t size, uint32_t /*options*/, int32_t *spacesCountl, int32_t *spacesCountr) {
|
||||
int32_t i = 0;
|
||||
int32_t countl = 0,countr = 0;
|
||||
while((dest[i] == SPACE_CHAR) && (countl < size)) {
|
||||
while(countl < size && dest[countl] == SPACE_CHAR) {
|
||||
countl++;
|
||||
i++;
|
||||
}
|
||||
if (countl < size) { /* the entire buffer is not all space */
|
||||
while(dest[size-1] == SPACE_CHAR) {
|
||||
|
|
Loading…
Add table
Reference in a new issue