I am working on a C module that has a method like so:
int do_something(string s, array|void extras)
If they passed the method an array, then I would like to fill it in with
some extra data for them. How do I do this, and make sure that it doesn't
mess up the reference so they can actually access the data I put in the
array for them?
Thanks
Adam