MCPcopy Create free account
hub / github.com/git/git / range_set_append

Function range_set_append

line-log.c:72–76  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

70}
71
72void range_set_append(struct range_set *rs, long a, long b)
73{
74 assert(rs->nr == 0 || rs->ranges[rs->nr-1].end <= a);
75 range_set_append_unsafe(rs, a, b);
76}
77
78static int range_cmp(const void *_r, const void *_s)
79{

Callers 5

range_set_differenceFunction · 0.85
line_log_data_insertFunction · 0.85
collect_diff_cbFunction · 0.85
range_set_shift_diffFunction · 0.85

Calls 1

range_set_append_unsafeFunction · 0.85

Tested by

no test coverage detected