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

Function hb_str_ends_with

libhb/common.c:585–590  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

583}
584
585int hb_str_ends_with(const char *base, const char *str)
586{
587 int blen = strlen(base);
588 int slen = strlen(str);
589 return (blen >= slen) && (0 == strcasecmp(base + blen - slen, str));
590}
591
592static void hb_common_global_hw_init()
593{

Callers 5

hb_batch_initFunction · 0.85
is_known_filetypeFunction · 0.85
ghb_file_is_ssa_subtitleFunction · 0.85
ghb_file_is_srt_subtitleFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected