MCPcopy Create free account
hub / github.com/CppCXY/EmmyLuaCodeStyle / findlast

Function findlast

3rd/lua-5.4.3/src/lgc.c:952–956  ·  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

950** find last 'next' field in list 'p' list (to add elements in its end)
951*/
952static GCObject **findlast (GCObject **p) {
953 while (*p != NULL)
954 p = &(*p)->next;
955 return p;
956}
957
958
959/*

Callers 1

separatetobefnzFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected