| 271 | // |
| 272 | |
| 273 | ppdcVariable * // O - Variable |
| 274 | ppdcSource::find_variable(const char *n)// I - Variable name |
| 275 | { |
| 276 | ppdcVariable *v; // Current variable |
| 277 | |
| 278 | |
| 279 | for (v = (ppdcVariable *)vars->first(); v; v = (ppdcVariable *)vars->next()) |
| 280 | if (!_cups_strcasecmp(n, v->name->value)) |
| 281 | return (v); |
| 282 | |
| 283 | return (NULL); |
| 284 | } |
| 285 | |
| 286 | |
| 287 | // |
nothing calls this directly
no test coverage detected