Bug #9619 » readme_ext.patch
README.EXT (working copy) | ||
---|---|---|
Initializes the interpreter.
|
||
void ruby_options(int argc, char **argv) ::
|
||
void * ruby_options(int argc, char **argv) ::
|
||
Process command line arguments for the interpreter.
|
||
And compiles the Ruby source to execute.
|
||
It returns an opaque pointer to the compiled source
|
||
or an internal special value.
|
||
void ruby_run() ::
|
||
int ruby_run_node(void *n) ::
|
||
Starts execution of the interpreter.
|
||
Runs the given compiled source and exits this process.
|
||
It returns 0 if successfully runs the source.
|
||
Otherwise, it returns non-zero.
|
||
void ruby_script(char *name) ::
|
||
README.EXT.ja (working copy) | ||
---|---|---|
Rubyインタプリタの初期化を行なう.
|
||
void ruby_options(int argc, char **argv) ::
|
||
void * ruby_options(int argc, char **argv) ::
|
||
Rubyインタプリタのコマンドライン引数の処理を行なう.
|
||
Rubyインタプリタのコマンドライン引数の処理を行ない,
|
||
Rubyのソースコードをコンパイルする。
|
||
コンパイルされたソース,もしくは特殊値へのポインタを返す.
|
||
void ruby_run() ::
|
||
int ruby_run_node(void *n) ::
|
||
Rubyインタプリタを実行する.
|
||
コンパイルされたコードを実行する.
|
||
実行に成功した場合は0を,エラーが起こったときは0以外を返す.
|
||
void ruby_script(char *name) ::
|
||