Searched defs:inname (Results 1 - 3 of 3) sorted by relevance
/vbox/src/libs/zlib-1.2.6/examples/ |
H A D | gun.c | 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) argument 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, outnam [all...] |
/vbox/src/libs/libpng-1.2.8/contrib/gregbook/ |
H A D | wpng.c | 126 char *inname = NULL, outname[256]; local 252 inname = *argv; 263 if (!inname) { 287 } else if ((len = strlen(inname)) > 250) { 291 } else if (!(wpng_info.infile = fopen(inname, "rb"))) { 292 fprintf(stderr, PROGNAME ": can't open input file [%s]\n", inname); 303 inname); 327 /* make outname from inname */ 328 if ((p = strrchr(inname, '.')) == NULL || 329 (p - inname) ! [all...] |
/vbox/src/libs/libpng-1.2.8/ |
H A D | pngtest.c | 104 int test_one_file PNGARG((PNG_CONST char *inname, PNG_CONST char *outname)); 599 test_one_file(PNG_CONST char *inname, PNG_CONST char *outname) argument 633 MultiByteToWideChar(CP_ACP, 0, inname, -1, path, MAX_PATH); 636 if ((fpin = fopen(inname, "rb")) == NULL) 639 fprintf(STDERR, "Could not find input file %s\n", inname); 665 png_set_error_fn(read_ptr, (png_voidp)inname, pngtest_error, 678 png_set_error_fn(write_ptr, (png_voidp)inname, pngtest_error, 698 fprintf(STDERR, "%s -> %s: libpng read error\n", inname, outname); 722 fprintf(STDERR, "%s -> %s: libpng write error\n", inname, outname); 1218 MultiByteToWideChar(CP_ACP, 0, inname, 1300 static PNG_CONST char *inname = "pngtest/png"; variable 1303 static PNG_CONST char *inname = "pngtest.png"; variable [all...] |
Completed in 206 milliseconds