summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
Diffstat (limited to 'src/common')
-rw-r--r--src/common/cbasetypes.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/cbasetypes.h b/src/common/cbasetypes.h
index 3ca0c5f67..83c7c8d60 100644
--- a/src/common/cbasetypes.h
+++ b/src/common/cbasetypes.h
@@ -413,6 +413,7 @@ typedef char bool;
#define ISXDIGIT(c) (isxdigit((unsigned char)(c)))
#define ISBDIGIT(c) ((unsigned char)(c) == '0' || (unsigned char)(c) == '1')
#define ISODIGIT(c) ((unsigned char)(c) >= '0' && (unsigned char)(c) <= '7')
+#define ISNSEPARATOR(c) ((unsigned char)(c) == '_')
#define ISGRAPH(c) (isgraph((unsigned char)(c)))
#define ISLOWER(c) (islower((unsigned char)(c)))
#define ISPRINT(c) (isprint((unsigned char)(c)))