Help for this page

Select Code to Download


  1. or download this
        ...
        d = SvPVX(sv);
    ...
        else
        *d = d[1];
    
  2. or download this
        d = SvPVX(sv);
        while (isALPHA(*d)) d++;
        while (isDIGIT(*d)) d++;
    
  3. or download this
        if (*d) {
    
  4. or download this
        sv_setnv(sv,Atof(SvPVX_const(sv)) + 1.0);
    
  5. or download this
        Perl_croak(aTHX_ "String increment invalid on string '%s'", SvPVX(
    +sv));