| 687 | */ |
| 688 | |
| 689 | static void |
| 690 | ppd_debug_marked(ppd_file_t *ppd, /* I - PPD file data */ |
| 691 | const char *title) /* I - Title for list */ |
| 692 | { |
| 693 | ppd_choice_t *c; /* Current choice */ |
| 694 | |
| 695 | |
| 696 | DEBUG_printf(("2cupsMarkOptions: %s", title)); |
| 697 | |
| 698 | for (c = (ppd_choice_t *)cupsArrayFirst(ppd->marked); |
| 699 | c; |
| 700 | c = (ppd_choice_t *)cupsArrayNext(ppd->marked)) |
| 701 | DEBUG_printf(("2cupsMarkOptions: %s=%s", c->option->keyword, c->choice)); |
| 702 | } |
| 703 | #endif /* DEBUG */ |
| 704 | |
| 705 |
no test coverage detected