Based on your function declaration, I'm guessing that you want to pass in an array of strings. You will need to instead pass a reference to an array containing strings when calling the function from Perl, then extract the strings from the Perl array and insert them into a C array. Maybe something like this (untested):

int function(a,b,sv) int a; unsigned short b; SV * sv; INIT: unsigned char ** c; // check if scalar is a reference and is referencing an array if(SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PVAV){ // dereference array AV * av = (AV*)SvRV(sv); // get highest array index I32 c_len = av_len(av); // allocate array c = (unsigned char **)malloc(len + 1); // loop through array for(int i = 0; i <= c_len; i++){ // store string in C array c[i] = (char*)SvPV_nolen((SV*)*av_fetch(av, i, 0)); } } OUTPUT: RETVAL

Check out these various manpages regarding the Perl internals and API for more info:

Regarding your 2nd question, callbacks in Perl are simply scalar values, holding references to subroutines, that you pass to your XS functions, and then call using the appropriate Perl functions. See the perlcall manpage for more info.

Update: Links fixed.


In reply to Re: perlxs help by kejohm
in thread perlxs help by KVB

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.