Help for this page

Select Code to Download


  1. or download this
    PerlIO *
    PerlIO_openn(pTHX_ const char *layers, const char *mode, int fd,
    ...
        }
        return NULL;
    }
    
  2. or download this
    ...
    if ((*type == IoTYPE_RDWR) && /* scary */
    ...
     mode[1] = *type++;
     writing = 1;
     }
    
  3. or download this
    else if (*type == IoTYPE_RDONLY) {
                /*SUPPRESS 530*/
    ...
                    goto duplicity;
                }
                if (*type == IoTYPE_STD && (!type[1] || isSPACE(type[1]) |
    +| type[1] == ':')) {
    
  4. or download this
    ...
          else {
    ...
                    }
                    fp = PerlIO_openn(aTHX_ type,mode,-1,0,0,NULL,num_svs,
    +svp);
                }
    
  5. or download this
                if (!fp && type && *type && *type != ':' && !isIDFIRST(*ty
    +pe))
                   goto unknown_open_mode;
            }