Remove the tail node from a list
Source position: exec.pas line 1275
function RemTail( |
list: pList |
):pNode; |
list |
|
A pointer to a list |
The node removed or nil when empty list
Remove the last node from a list, and return a pointer to it. If the list is empty, return nil.
|
Append node to tail of a list |
|
|
Insert a node at the head of a list |
|
|
Insert or append node to a system list |
|
|
Insert a node into a list |
|
|
Remove the head node from a list |
|
|
Remove a node from a list |