| 74 | */ |
| 75 | |
| 76 | ppd_cparam_t * /* O - Custom parameter or NULL */ |
| 77 | ppdFirstCustomParam(ppd_coption_t *opt) /* I - Custom option */ |
| 78 | { |
| 79 | if (!opt) |
| 80 | return (NULL); |
| 81 | |
| 82 | return ((ppd_cparam_t *)cupsArrayFirst(opt->params)); |
| 83 | } |
| 84 | |
| 85 | |
| 86 | /* |
no test coverage detected