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

Function av_strcasecmp

libavutil/avstring.c:208–216  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

206}
207
208int av_strcasecmp(const char *a, const char *b)
209{
210 uint8_t c1, c2;
211 do {
212 c1 = av_tolower(*a++);
213 c2 = av_tolower(*b++);
214 } while (c1 && c1 == c2);
215 return c1 - c2;
216}
217
218int av_strncasecmp(const char *a, const char *b, size_t n)
219{

Callers 15

v4l2_set_parametersFunction · 0.85
find_child_node_by_nameFunction · 0.85
resolve_content_pathFunction · 0.85
parse_programinformationFunction · 0.85
parse_manifestFunction · 0.85
mcc_write_headerFunction · 0.85
ff_is_http_protoFunction · 0.85

Calls 1

av_tolowerFunction · 0.85

Tested by

no test coverage detected