diff options
Diffstat (limited to 'util.h')
| -rw-r--r-- | util.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6,7 +6,7 @@ #define MAX(a, b) ((a) < (b) ? (b) : (a)) /* is c the start of a utf8 sequence? */ -#define isutf8(c) (((c)&0xC0)!=0x80) -#define ISASCII(ch) ((unsigned char)ch < 0x80) +#define ISUTF8(c) (((c)&0xC0)!=0x80) +#define ISASCII(ch) ((unsigned char)ch < 0x80) #endif |
