mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-10 14:52:00 +00:00
* Add missing )
This commit is contained in:
parent
7562caa310
commit
eb217f7364
1 changed files with 1 additions and 1 deletions
|
@ -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))
|
||||
|
|
Loading…
Reference in a new issue