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

Function oidmap_iter_first

oidmap.h:105–111  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

103}
104
105static inline void *oidmap_iter_first(struct oidmap *map,
106 struct oidmap_iter *iter)
107{
108 oidmap_iter_init(map, iter);
109 /* TODO: this API could be reworked to do compile-time type checks */
110 return (void *)oidmap_iter_next(iter);
111}
112
113#endif

Callers

nothing calls this directly

Calls 2

oidmap_iter_initFunction · 0.85
oidmap_iter_nextFunction · 0.85

Tested by

no test coverage detected