| 1171 | */ |
| 1172 | |
| 1173 | static int /* O - Boolean value */ |
| 1174 | cups_boolean_value(const char *value) /* I - String value */ |
| 1175 | { |
| 1176 | return (!_cups_strcasecmp(value, "yes") || !_cups_strcasecmp(value, "on") || !_cups_strcasecmp(value, "true")); |
| 1177 | } |
| 1178 | |
| 1179 | |
| 1180 | /* |
no test coverage detected