MCPcopy Create free account
hub / github.com/buke/quickjs-go / list_empty

Function list_empty

deps/quickjs/list.h:84–87  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

82}
83
84static inline int list_empty(struct list_head *el)
85{
86 return el->next == el;
87}
88
89#define list_for_each(el, head) \
90 for(el = (head)->next; el != (head); el = el->next)

Callers 6

js_os_run_timersFunction · 0.85
handle_posted_messageFunction · 0.85
js_os_poll_internalFunction · 0.85
js_worker_postMessageFunction · 0.85
js_agent_getReportFunction · 0.85

Calls

no outgoing calls

Tested by 1

js_agent_getReportFunction · 0.68