xs-fun icon indicating copy to clipboard operation
xs-fun copied to clipboard

XS is fun: a simple and easy tutorial on writing Perl XS

Results 3 xs-fun issues
Sort by recently updated
recently updated
newest added

First of all: Many thanks for this great tutorial. Unfortunately the last chapter is not complete. Moreover the example code is broken. - The code found in xs-fun/chapter_08/Audio-Chromaprint is not...

``` /* bless into the proper package */ RETVAL = sv_bless( self, gv_stashpv( class, 0 ) ); OUTPUT: RETVAL ``` https://github.com/xsawyerx/xs-fun/blame/master/chapter_03/chapter_03.pod#L170 you should use gv_stashsv instead of gv_stashpv since your...

- [ ] `chromaprint_get_version` - [x] `chromaprint_new` - [x] `chromaprint_free` - [ ] `chromaprint_get_algorithm` (implement, since it's not available) - [ ] `chromaprint_set_option` - [ ] `chromaprint_start` - [ ]...