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

Function av_toupper

libavutil/avstring.h:227–232  ·  view source on GitHub ↗

* Locale-independent conversion of ASCII characters to uppercase. */

Source from the content-addressed store, hash-verified

225 * Locale-independent conversion of ASCII characters to uppercase.
226 */
227static inline av_const int av_toupper(int c)
228{
229 if (c >= 'a' && c <= 'z')
230 c ^= 0x20;
231 return c;
232}
233
234/**
235 * Locale-independent conversion of ASCII characters to lowercase.

Callers 11

ff_hex_to_dataFunction · 0.85
get_jss_cmdFunction · 0.85
av_dict_getFunction · 0.85
av_stristartFunction · 0.85
read_yesnoFunction · 0.85
upcase_stringFunction · 0.85
upcase_stringFunction · 0.85
decode_headerFunction · 0.85
ff_toupper4Function · 0.85
jacosub_to_assFunction · 0.85
hex_to_dataFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected