Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 9th, 2012  |  syntax: None  |  size: 0.25 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. #include "EXTERN.h"
  2. #include "perl.h"
  3. #include "XSUB.h"
  4.  
  5. MODULE = Mytest         PACKAGE = Mytest
  6.  
  7. void
  8. xs_copy_iv(dst, src)
  9.     SV  *dst;
  10.     int src;
  11. CODE:
  12.     sv_setiv(dst, src);
  13.  
  14. void
  15. xs_copy_sv(dst, src)
  16.     SV *dst;
  17.     SV *src;
  18. CODE:
  19.     sv_setsv(dst, src);