MCPcopy Create free account
hub / github.com/HandBrake/HandBrake / hb_strdup_printf

Function hb_strdup_printf

libhb/common.c:6511–6521  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6509}
6510
6511char * hb_strdup_printf( const char * fmt, ... )
6512{
6513 char * str;
6514 va_list args;
6515
6516 va_start( args, fmt );
6517 str = hb_strdup_vaprintf( fmt, args );
6518 va_end( args );
6519
6520 return str;
6521}
6522
6523char * hb_strncat_dup( const char * s1, const char * s2, size_t n )
6524{

Callers 15

crop_scale_infoFunction · 0.85
pad_initFunction · 0.85
qsv_rotate_initFunction · 0.85
hb_get_full_descriptionFunction · 0.85
hb_remove_previewsFunction · 0.85
hb_global_closeFunction · 0.85
hb_batch_initFunction · 0.85
get_audio_copy_maskFunction · 0.85
hb_preset_apply_filtersFunction · 0.85
fix_name_collisionsFunction · 0.85

Calls 1

hb_strdup_vaprintfFunction · 0.85

Tested by

no test coverage detected