1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

Sync with lib/setup_once.h

This commit is contained in:
Yang Tse 2006-10-18 21:25:12 +00:00
parent 5df4be1165
commit 4cac96c33a

View File

@ -126,6 +126,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 */