Lines Matching refs:outname
126 char *inname = NULL, outname[256];
327 /* make outname from inname */
331 strcpy(outname, inname);
332 strcpy(outname+len, ".png");
335 strncpy(outname, inname, len);
336 strcpy(outname+len, ".png");
338 /* check if outname already exists; if not, open */
339 if ((wpng_info.outfile = fopen(outname, "rb")) != NULL) {
341 outname);
344 } else if (!(wpng_info.outfile = fopen(outname, "wb"))) {
346 outname);