(C) 1998 AROS - The Amiga Research OS


NAME
#include <exec/lists.h>
#include <proto/exec.h>

struct Node * RemTail (list)

LOCATION
In SysBase at offset 44

SYNOPSIS
struct List * list

FUNCTION
Remove the last node from a list.

INPUTS
list
Remove the node from this list

RESULT
The node that has been removed.

EXAMPLE
struct List * list;
struct Node * tail;

// Remove node and return it
tail = RemTail (list);
SEE ALSO

NOTES

BUGS

INTERNALS

HISTORY