summaryrefslogtreecommitdiff
path: root/rubyparser.h
diff options
context:
space:
mode:
authorS-H-GAMELINKS <gamelinks007@gmail.com>2023-07-09 13:25:45 +0900
committerYuichiro Kaneko <spiketeika@gmail.com>2023-07-09 15:00:52 +0900
commitacd9c208d5ab8619b6102116f48fcfc06f47cb7e (patch)
tree802983e022b1c0c0f9866736aaef288a81f9c4a2 /rubyparser.h
parentb2bccf053befd331553e9443b1f1c86b7aaf1296 (diff)
Move some macro for universal parser
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/8044
Diffstat (limited to 'rubyparser.h')
-rw-r--r--rubyparser.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/rubyparser.h b/rubyparser.h
index 8ca6f0065e..35efbbe384 100644
--- a/rubyparser.h
+++ b/rubyparser.h
@@ -586,16 +586,6 @@ typedef struct rb_parser_config_struct {
unsigned long (*scan_digits)(const char *str, ssize_t len, int base, size_t *retlen, int *overflow);
double (*strtod)(const char *s00, char **se);
- /* ctype */
- int (*isspace)(int c);
- int (*iscntrl)(int c);
- int (*isalpha)(int c);
- int (*isdigit)(int c);
- int (*isalnum)(int c);
- int (*isxdigit)(int c);
- int (*strcasecmp)(const char *s1, const char *s2);
- int (*strncasecmp)(const char *s1, const char *s2, size_t n);
-
/* Misc */
VALUE (*rbool)(VALUE);
int (*undef_p)(VALUE);