Added ISPRINT() required for src/main.c.
This commit is contained in:
parent
1cddd744ad
commit
94095c61d8
@ -123,7 +123,7 @@
|
|||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Uppercase macro versions of ANSI/ISO is*() functions/macros which
|
* Uppercase macro versions of ANSI/ISO is*() functions/macros which
|
||||||
* avoid negative number inputs with argument byte codes > 127.
|
* avoid negative number inputs with argument byte codes > 127.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -133,6 +133,7 @@
|
|||||||
#define ISXDIGIT(x) (isxdigit((int) ((unsigned char)x)))
|
#define ISXDIGIT(x) (isxdigit((int) ((unsigned char)x)))
|
||||||
#define ISGRAPH(x) (isgraph((int) ((unsigned char)x)))
|
#define ISGRAPH(x) (isgraph((int) ((unsigned char)x)))
|
||||||
#define ISALPHA(x) (isalpha((int) ((unsigned char)x)))
|
#define ISALPHA(x) (isalpha((int) ((unsigned char)x)))
|
||||||
|
#define ISPRINT(x) (isprint((int) ((unsigned char)x)))
|
||||||
|
|
||||||
|
|
||||||
#endif /* __SETUP_ONCE_H */
|
#endif /* __SETUP_ONCE_H */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user