| 32 | */ |
| 33 | |
| 34 | int /* O - Exit status */ |
| 35 | main(int argc, /* I - Number of command-line arguments */ |
| 36 | char *argv[]) /* I - Command-line arguments */ |
| 37 | { |
| 38 | /* |
| 39 | * Go through all the available destinations to find the requested one... |
| 40 | */ |
| 41 | |
| 42 | (void)argc; |
| 43 | |
| 44 | cupsEnumDests(CUPS_DEST_FLAGS_NONE, -1, NULL, 0, 0, enum_dests_cb, argv[1]); |
| 45 | |
| 46 | return (0); |
| 47 | } |
| 48 | |
| 49 | |
| 50 | /* |
nothing calls this directly
no test coverage detected