* Locale-independent conversion of ASCII isdigit. */
| 200 | * Locale-independent conversion of ASCII isdigit. |
| 201 | */ |
| 202 | static inline av_const int av_isdigit(int c) |
| 203 | { |
| 204 | return c >= '0' && c <= '9'; |
| 205 | } |
| 206 | |
| 207 | /** |
| 208 | * Locale-independent conversion of ASCII isgraph. |
no outgoing calls
no test coverage detected