MCPcopy Create free account
hub / github.com/RsyncProject/rsync / get_nni_by_num

Function get_nni_by_num

compat.c:240–250  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

238}
239
240struct name_num_item *get_nni_by_num(struct name_num_obj *nno, int num)
241{
242 struct name_num_item *nni;
243
244 for (nni = nno->list; nni->name; nni++) {
245 if (num == nni->num)
246 return nni;
247 }
248
249 return NULL;
250}
251
252static void init_nno_saw(struct name_num_obj *nno, int val)
253{

Callers 2

verify_digestFunction · 0.85
parse_compress_choiceFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected