I am trying to rewrite a highly recursive function using inline C with Ruby. The function accepts an undefined number of arguments, i.e. it would look like this in Ruby:
def each_entity(*types)
# Do something and recurse.
end
I am trying to mimick this in inline C using the following code:
VALUE each_entity_c(int argc, VALUE *argv)
{
// ...
}
But this yields the compile error:
inline.rb:486:in `ruby2c': Unknown type "VALUE *" (ArgumentError)
Is this the correct way to accomplish this in C? If so, what could have caused this error? If not, how is it done?
VALUE? – asaelr Jan 31 at 1:31...not do what you want? – prelic Jan 31 at 1:32VALUE each_entity_c(int test) { ... }without any warnings raised. – louism Jan 31 at 2:19VALUE each_entity_c(VALUE arg1, ...)yields "WARNING: '...' not understood." – louism Jan 31 at 2:22inline do |builder| ...stuff look like? There's nothing wrong withVALUE *, the Inline C examples even use it so the problem is elsewhere. – mu is too short Jan 31 at 4:21