diff options
Diffstat (limited to 'code/game')
| -rw-r--r-- | code/game/bg_lib.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/code/game/bg_lib.h b/code/game/bg_lib.h index 0629d7b..53879c1 100644 --- a/code/game/bg_lib.h +++ b/code/game/bg_lib.h @@ -65,7 +65,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)) | 
