| 51 | */ |
| 52 | |
| 53 | int /* O - Number of options marked */ |
| 54 | ppdCollect(ppd_file_t *ppd, /* I - PPD file data */ |
| 55 | ppd_section_t section, /* I - Section to collect */ |
| 56 | ppd_choice_t ***choices) /* O - Pointers to choices */ |
| 57 | { |
| 58 | return (ppdCollect2(ppd, section, 0.0, choices)); |
| 59 | } |
| 60 | |
| 61 | |
| 62 | /* |
nothing calls this directly
no test coverage detected