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

Function av_isdigit

libavutil/avstring.h:202–205  ·  view source on GitHub ↗

* Locale-independent conversion of ASCII isdigit. */

Source from the content-addressed store, hash-verified

200 * Locale-independent conversion of ASCII isdigit.
201 */
202static 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.

Callers 15

parse_valueFunction · 0.85
dash_read_tmpl_idFunction · 0.85
mcc_parse_time_code_partFunction · 0.85
parse_adaptation_setsFunction · 0.85
ff_vfscanfFunction · 0.85
av_isxdigitFunction · 0.85
date_get_numFunction · 0.85
av_parse_timeFunction · 0.85
scanbracesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected