summaryrefslogtreecommitdiff
path: root/include/safe-ctype.h
diff options
context:
space:
mode:
authorneil <neil@138bc75d-0d04-0410-961f-82ee72b054a4>2001-10-24 19:29:16 +0000
committerneil <neil@138bc75d-0d04-0410-961f-82ee72b054a4>2001-10-24 19:29:16 +0000
commit66fb47446f1ba9c65dba0dfdf2d99a134a3e5f13 (patch)
tree460b24f8aa716b209dd63b0fd5f098c3c693f2a0 /include/safe-ctype.h
parent248080ee3f275c2c8da3eb65f41eb9c62f79d173 (diff)
downloadgcc-66fb47446f1ba9c65dba0dfdf2d99a134a3e5f13.tar.gz
* include/safe-ctype.h (_sch_isbasic, IS_ISOBASIC): New.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@46470 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'include/safe-ctype.h')
-rw-r--r--include/safe-ctype.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/safe-ctype.h b/include/safe-ctype.h
index ccacda5b31b..b2ad8490bd0 100644
--- a/include/safe-ctype.h
+++ b/include/safe-ctype.h
@@ -63,7 +63,9 @@ enum {
_sch_isalnum = _sch_isalpha|_sch_isdigit, /* A-Za-z0-9 */
_sch_isidnum = _sch_isidst|_sch_isdigit, /* A-Za-z0-9_ */
_sch_isgraph = _sch_isalnum|_sch_ispunct, /* isprint and not space */
- _sch_iscppsp = _sch_isvsp|_sch_isnvsp /* isspace + \0 */
+ _sch_iscppsp = _sch_isvsp|_sch_isnvsp, /* isspace + \0 */
+ _sch_isbasic = _sch_isprint|_sch_iscppsp /* basic charset of ISO C
+ (plus ` and @) */
};
/* Character classification. */
@@ -86,6 +88,7 @@ extern const unsigned short _sch_istable[256];
#define ISIDNUM(c) _sch_test(c, _sch_isidnum)
#define ISIDST(c) _sch_test(c, _sch_isidst)
+#define IS_ISOBASIC(c) _sch_test(c, _sch_isbasic)
#define IS_VSPACE(c) _sch_test(c, _sch_isvsp)
#define IS_NVSPACE(c) _sch_test(c, _sch_isnvsp)
#define IS_SPACE_OR_NUL(c) _sch_test(c, _sch_iscppsp)