* Locale-independent conversion of ASCII characters to uppercase. */
| 225 | * Locale-independent conversion of ASCII characters to uppercase. |
| 226 | */ |
| 227 | static inline av_const int av_toupper(int c) |
| 228 | { |
| 229 | if (c >= 'a' && c <= 'z') |
| 230 | c ^= 0x20; |
| 231 | return c; |
| 232 | } |
| 233 | |
| 234 | /** |
| 235 | * Locale-independent conversion of ASCII characters to lowercase. |
no outgoing calls
no test coverage detected