summaryrefslogtreecommitdiffstats
path: root/README.EXT
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1999-10-04 04:51:08 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1999-10-04 04:51:08 +0000
commit52d12453a9941ff91fbcaf1b02914efcb5a7621b (patch)
treea6ad21b14e176e9c3a39a775781b978950315543 /README.EXT
parent960c03333927ea7bc50a29b263e33331edff5460 (diff)
downloadruby-52d12453a9941ff91fbcaf1b02914efcb5a7621b.tar.gz
ruby-52d12453a9941ff91fbcaf1b02914efcb5a7621b.tar.xz
ruby-52d12453a9941ff91fbcaf1b02914efcb5a7621b.zip
19991004
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@536 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'README.EXT')
-rw-r--r--README.EXT7
1 files changed, 5 insertions, 2 deletions
diff --git a/README.EXT b/README.EXT
index c0f7048bd..f850f0109 100644
--- a/README.EXT
+++ b/README.EXT
@@ -892,7 +892,6 @@ Sets the value of the instance variable.
Calls the function func1, supplying func2 as the block. func1 will be
called with the argument arg1. func2 receives the value from yield as
the first argument, arg2 as the second argument.
-
VALUE rb_yield(VALUE val)
@@ -942,10 +941,14 @@ exception handling nor ensure execution will be done.
The embedding API are below (not needed for extension libraries):
- void ruby_init(int argc, char **argv, char **envp)
+ void ruby_init()
Initializes the interpreter.
+ void ruby_options(int argc, char **argv)
+
+Process command line arguments for the interpreter.
+
void ruby_run()
Starts execution of the interpreter.