diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-02-23 21:13:05 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-02-23 21:13:05 +0000 |
commit | 552badf29f3aa5e9b76d02716f93f37b94ba8353 (patch) | |
tree | 2c751d83a3a4d15fe94ab76fb40d5c1091a095f4 /include/ruby/util.h | |
parent | b3b3ff29b5e266c1fb9d2c5b5581614155b60f60 (diff) |
* debug.c (ruby_set_debug_option): separated ruby_each_words().
* util.c (ruby_each_words): extracted from ruby_set_debug_option().
* ruby.c (proc_options): generalized enable/disable options.
* ruby.c (ruby_init_gems): take enabled flag. [ruby-core:14840]
* ruby.c (process_options): added --disable-rubyopt flag.
* include/ruby/util.h (ruby_each_words): prototype.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15590 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby/util.h')
-rw-r--r-- | include/ruby/util.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/ruby/util.h b/include/ruby/util.h index ca9867a37b..e6e6c95ca4 100644 --- a/include/ruby/util.h +++ b/include/ruby/util.h @@ -70,6 +70,8 @@ double ruby_strtod(const char *, char **); #undef strtod #define strtod(s,e) ruby_strtod(s,e) +void ruby_each_words(const char *, void (*)(const char*, int, void*), void *); + #if defined(__cplusplus) #if 0 { /* satisfy cc-mode */ |