MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / findlast

Function findlast

extlibs/lua/src/lgc.c:889–893  ·  view source on GitHub ↗

** find last 'next' field in list 'p' list (to add elements in its end) */

Source from the content-addressed store, hash-verified

887** find last 'next' field in list 'p' list (to add elements in its end)
888*/
889static GCObject **findlast (GCObject **p) {
890 while (*p != NULL)
891 p = &(*p)->next;
892 return p;
893}
894
895
896/*

Callers 1

separatetobefnzFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected