| 90 | */ |
| 91 | |
| 92 | ppd_cparam_t * /* O - Custom parameter or NULL */ |
| 93 | ppdNextCustomParam(ppd_coption_t *opt) /* I - Custom option */ |
| 94 | { |
| 95 | if (!opt) |
| 96 | return (NULL); |
| 97 | |
| 98 | return ((ppd_cparam_t *)cupsArrayNext(opt->params)); |
| 99 | } |
no test coverage detected