Help for this page

Select Code to Download


  1. or download this
          my @vals=(\@someArray,\%someHash);
          my $res=store(\@vals,"$path/$name");
    
  2. or download this
      my @someArray = ();
      my %someHash = ();
    ...
          %someHash = %$tmp2;
        }
      }
    
  3. or download this
    WRITE(header, length);
    
  4. or download this
    WRITE( (unsigned char*) header, length);
    
  5. or download this
    #define WRITE(x,y)                             \
      STMT_START {                                \
    ...
        else if (PerlIO_write(cxt->fio, x, y) != y)    \
            return -1;                            \
      } STMT_END