Merge pull request #20077 from dundargoc/refactor/char_u/11

refactor: replace char_u with char 11: remove `STRLEN` part 1
This commit is contained in:
bfredl
2022-09-12 21:50:31 +02:00
committed by GitHub
80 changed files with 613 additions and 612 deletions

View File

@@ -1556,7 +1556,7 @@ void show_utf8(void)
sprintf((char *)IObuff + rlen, "%02x ",
(line[i] == NL) ? NUL : line[i]); // NUL is stored as NL
clen--;
rlen += (int)STRLEN(IObuff + rlen);
rlen += (int)strlen(IObuff + rlen);
if (rlen > IOSIZE - 20) {
break;
}