MCPcopy Create free account
hub / github.com/ading2210/linuxpdf / list_empty

Function list_empty

tinyemu/list.h:75–78  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

73}
74
75static inline int list_empty(struct list_head *el)
76{
77 return el->next == el;
78}
79
80#define list_for_each(el, head) \
81 for(el = (head)->next; el != (head); el = el->next)

Callers 3

inode_freeFunction · 0.85
fs_mem_endFunction · 0.85
fs_net_event_loopFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected