Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
5a6943c7
Commit
5a6943c7
authored
Oct 24, 2001
by
Neil Booth
Committed by
Neil Booth
Oct 24, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* include/safe-ctype.h (_sch_isbasic, IS_ISOBASIC): New.
From-SVN: r46470
parent
173a000e
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletions
+8
-1
include/ChangeLog
+4
-0
include/safe-ctype.h
+4
-1
No files found.
include/ChangeLog
View file @
5a6943c7
2001-10-24 Neil Booth <neil@daikokuya.demon.co.uk>
* include/safe-ctype.h (_sch_isbasic, IS_ISOBASIC): New.
2001-10-22 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* libiberty.h (hex_init): Revert delete.
...
...
include/safe-ctype.h
View file @
5a6943c7
...
...
@@ -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)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment