| 2356 | // |
| 2357 | |
| 2358 | void |
| 2359 | ppdcSource::read_file(const char *f, // I - File to read |
| 2360 | cups_file_t *ffp) // I - File pointer to use |
| 2361 | { |
| 2362 | ppdcFile *fp = new ppdcFile(f, ffp); |
| 2363 | scan_file(fp); |
| 2364 | delete fp; |
| 2365 | |
| 2366 | if (cond_current != cond_stack) |
| 2367 | _cupsLangPrintf(stderr, _("ppdc: Missing #endif at end of \"%s\"."), f); |
| 2368 | } |
| 2369 | |
| 2370 | |
| 2371 | // |
no test coverage detected