in reply to How to call Encode::decode from Perl XS

http://perldoc.perl.org/perlapi.html#Callback-Functions, http://perldoc.perl.org/perlguts.html#Unicode-Support, http://perldoc.perl.org/perlapi.html#Unicode-Support
  • Comment on Re: How to call Encode::decode from Perl XS

Replies are listed 'Best First'.
Re^2: How to call Encode::decode from Perl XS
by Anonymous Monk on May 09, 2011 at 09:06 UTC

      That code uses sv_utf8_decode not Encode::decode. I already use sv_utf8_decode.

Re^2: How to call Encode::decode from Perl XS
by mje (Curate) on May 09, 2011 at 09:16 UTC

    Thanks, callback functions looks useful and probably what I was looking for.