in reply to Re^4: Passing integer pointer in XS? (OUTPUT:)
in thread Passing integer pointer in XS?

I suspect that those "char *" arguments are treated such that they could be "const char *" arguments. I also suspect that "\0" characters are not expected. But if I am wrong then, yes, you need to do more work than I did. Thanks.

- tye        

  • Comment on Re^5: Passing integer pointer in XS? (const)

Replies are listed 'Best First'.
Re^6: Passing integer pointer in XS? (const)
by ikegami (Patriarch) on Jul 18, 2016 at 21:54 UTC

    And thank you for showing me int &. It's not valid C, but apparently it's valid XS. I did not know that.