MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / findlast

Function findlast

third-party/lua-5.5.0/src/lgc.c:1009–1013  ·  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

1007** find last 'next' field in list 'p' list (to add elements in its end)
1008*/
1009static GCObject **findlast (GCObject **p) {
1010 while (*p != NULL)
1011 p = &(*p)->next;
1012 return p;
1013}
1014
1015
1016/*

Callers 1

separatetobefnzFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected