MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / av_isxdigit

Function av_isxdigit

libavutil/avstring.h:247–251  ·  view source on GitHub ↗

* Locale-independent conversion of ASCII isxdigit. */

Source from the content-addressed store, hash-verified

245 * Locale-independent conversion of ASCII isxdigit.
246 */
247static 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.

Callers 4

bprint_escaped_pathFunction · 0.85
urldecodeFunction · 0.85
id3v2_put_privFunction · 0.85
h264_metadata_initFunction · 0.85

Calls 2

av_tolowerFunction · 0.85
av_isdigitFunction · 0.85

Tested by

no test coverage detected