Help for this page

Select Code to Download


  1. or download this
    SV * _to_IV(SV * in) {
      if(SvNV(in) < 0) return newSViv(SvIV(in));
      return newSVuv(SvUV(in));
    }
    
  2. or download this
    IV _to_IV(SV * in) {
      return SvIV(in);
    }