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

Function av_strlcatf

libavutil/avstring.c:103–113  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

101}
102
103size_t av_strlcatf(char *dst, size_t size, const char *fmt, ...)
104{
105 size_t len = strlen(dst);
106 va_list vl;
107
108 va_start(vl, fmt);
109 len += vsnprintf(dst + len, size > len ? size - len : 0, fmt, vl);
110 va_end(vl);
111
112 return len;
113}
114
115char *av_asprintf(const char *fmt, ...)
116{

Callers 15

LLVMFuzzerTestOneInputFunction · 0.85
LLVMFuzzerTestOneInputFunction · 0.85
set_codec_strFunction · 0.85
mov_metadata_lociFunction · 0.85
ff_dict_set_timestampFunction · 0.85
append_source_addrsFunction · 0.85
sdp_read_headerFunction · 0.85
make_digest_authFunction · 0.85
parse_icyFunction · 0.85

Calls

no outgoing calls

Tested by 1

mainFunction · 0.68