diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/game/bg_lib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/bg_lib.h b/src/game/bg_lib.h index 2289af18..d675cce4 100644 --- a/src/game/bg_lib.h +++ b/src/game/bg_lib.h @@ -60,7 +60,7 @@ typedef char * va_list; #define isascii(c) ((c) > 0 && (c) <= 0x7f) #define iscntrl(c) (((c) >= 0) && (((c) <= 0x1f) || ((c) == 0x7f))) #define isdigit(c) ((c) >= '0' && (c) <= '9') -#define isgraph(c) ((c) != ' ' && isprint(c) +#define isgraph(c) ((c) != ' ' && isprint(c)) #define islower(c) ((c) >= 'a' && (c) <= 'z') #define isprint(c) ((c) >= ' ' && (c) <= '~') #define ispunct(c) (((c) > ' ' && (c) <= '~') && !isalnum(c)) |