mirror of https://github.com/encounter/SDL.git
better readability..
This commit is contained in:
parent
5f04ed5fbd
commit
2ea0ec6207
|
@ -549,7 +549,7 @@ SDL_utf8strlen(const char *str)
|
||||||
const char *p = str;
|
const char *p = str;
|
||||||
char ch;
|
char ch;
|
||||||
|
|
||||||
while ((ch = *(p++))) {
|
while ((ch = *(p++)) != 0) {
|
||||||
/* if top two bits are 1 and 0, it's a continuation byte. */
|
/* if top two bits are 1 and 0, it's a continuation byte. */
|
||||||
if ((ch & 0xc0) != 0x80) {
|
if ((ch & 0xc0) != 0x80) {
|
||||||
retval++;
|
retval++;
|
||||||
|
|
Loading…
Reference in New Issue