mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-24 11:41:58 +00:00
better utf
This commit is contained in:
parent
a38a183626
commit
54357361fb
1 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
#include "misc.h"
|
||||
#include "slug.h"
|
||||
//#include <libc.h>
|
||||
#include <math.h>
|
||||
#include <utf.h>
|
||||
|
||||
static char *bufptr(int);
|
||||
|
||||
|
@ -156,7 +156,7 @@ static char *getutf(FILE *fp) // get 1 utf-encoded char (might be multiple bytes
|
|||
|
||||
for (*p = 0; (*p++ = getc(fp)) != EOF; ) {
|
||||
*p = 0;
|
||||
if (mblen(buf, sizeof buf) > 0) // found a valid character
|
||||
if (fullrune(buf, p-buf)) // found a valid character
|
||||
break;
|
||||
}
|
||||
return buf;
|
||||
|
|
Loading…
Reference in a new issue