| 163 | } |
| 164 | |
| 165 | static inline int invalid_value_char(const char ch) |
| 166 | { |
| 167 | if (isalnum(ch) || strchr(",-_", ch)) |
| 168 | return 0; |
| 169 | return -1; |
| 170 | } |
| 171 | |
| 172 | static char *attr_value_unescape(const char *value) |
| 173 | { |
no outgoing calls
no test coverage detected