* Locale-independent conversion of ASCII isspace. */
| 216 | * Locale-independent conversion of ASCII isspace. |
| 217 | */ |
| 218 | static inline av_const int av_isspace(int c) |
| 219 | { |
| 220 | return c == ' ' || c == '\f' || c == '\n' || c == '\r' || c == '\t' || |
| 221 | c == '\v'; |
| 222 | } |
| 223 | |
| 224 | /** |
| 225 | * Locale-independent conversion of ASCII characters to uppercase. |
no outgoing calls
no test coverage detected