From: jason@... (Jason Voegele) Date: 2001-09-26T03:20:25+09:00 Subject: [ruby-talk:21674] Extension Question: Block Parameters When creating a Ruby extension in C, what is the C equivalent of the following construct? def foo(&aBlock) bar(&aBlock) end # examples: foo foo {|obj| do_something} If a block is provided, the foo method should pass along the block to the bar method. I couldn't find any documentation on this. Thanks, Jason Voegele