| 141 | */ |
| 142 | |
| 143 | cups_array_t * /* O - CUPS array */ |
| 144 | cupsdCreateStringsArray(const char *s) /* I - Comma-delimited strings */ |
| 145 | { |
| 146 | if (s && *s) |
| 147 | return (_cupsArrayNewStrings(s, ',')); |
| 148 | else |
| 149 | return (NULL); |
| 150 | } |
| 151 | |
| 152 | |
| 153 | /* |
no test coverage detected