From 18aa993466ab857b2a56612dabd243992e987998 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Wed, 10 Sep 2014 11:46:59 +0200 Subject: Add comments where appropriate --- util.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'util.h') diff --git a/util.h b/util.h index b2446a7..f2e3d65 100644 --- a/util.h +++ b/util.h @@ -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 -- cgit v1.2.3