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

Function av_isspace

libavutil/avstring.h:218–222  ·  view source on GitHub ↗

* Locale-independent conversion of ASCII isspace. */

Source from the content-addressed store, hash-verified

216 * Locale-independent conversion of ASCII isspace.
217 */
218static 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.

Callers 15

ff_parse_key_valueFunction · 0.85
ff_get_chomp_lineFunction · 0.85
choose_qopFunction · 0.85
process_lineFunction · 0.85
trim_rightFunction · 0.85
split_tag_valueFunction · 0.85
mpjpeg_get_boundaryFunction · 0.85
ff_smil_get_attr_ptrFunction · 0.85
rtmp_http_openFunction · 0.85
parse_time_code_rateFunction · 0.85
mcc_read_headerFunction · 0.85
svg_probeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected