From: Szymon Drejewicz Date: 2003-02-05T23:47:29+09:00 Subject: Re: Embedding Ruby in C code Where I can find more docs about embedded Ruby in C? For example, I know that function 'rb_protect()' exists but I don't have any manual. I would like to use Ruby in C not by ruby_run() because of 'exit()' calling. My main target is to make C program working like below: 'a' is some string; while (cond) { change 'a' by ruby script; change 'a' by C; } --- Szymon Drejewicz