Lines Matching defs:inname
537 /* Decompress the file inname to the file outnname, of if test is true, just
539 inname is NULL or an empty string, read from stdin. If outname is NULL or
541 structure. When appropriate, copy the file attributes from inname to
547 local int gunzip(z_stream *strm, char *inname, char *outname, int test)
553 if (inname == NULL || *inname == 0) {
554 inname = "-";
558 infile = open(inname, O_RDONLY, 0);
560 fprintf(stderr, "gun cannot open %s\n", inname);
590 copymeta(inname, outname); /* copy attributes */
591 unlink(inname);
595 inname);
599 fprintf(stderr, "gun data error on %s: %s\n", inname, strm->msg);
613 inname, strerror(errno));
617 inname);