* Locale-independent conversion of ASCII isxdigit. */
| 245 | * Locale-independent conversion of ASCII isxdigit. |
| 246 | */ |
| 247 | static inline av_const int av_isxdigit(int c) |
| 248 | { |
| 249 | c = av_tolower(c); |
| 250 | return av_isdigit(c) || (c >= 'a' && c <= 'f'); |
| 251 | } |
| 252 | |
| 253 | /** |
| 254 | * Locale-independent case-insensitive compare. |
no test coverage detected