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

Function volatile_list_add

list.h:198–205  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

196}
197
198static inline void volatile_list_add(volatile struct volatile_list_head *newp,
199 volatile struct volatile_list_head *head)
200{
201 head->next->prev = newp;
202 newp->next = head->next;
203 newp->prev = head;
204 head->next = newp;
205}
206
207#endif /* LIST_H */

Callers 1

activate_tempfileFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected