(C) 1998 AROS - The Amiga Research OS


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

void Remove (node)

LOCATION
In SysBase at offset 42

SYNOPSIS
struct Node * node

FUNCTION
Remove a node from a list.

INPUTS
node
This node to be removed.

RESULT

EXAMPLE
struct Node * node;

// Remove node
Remove (node);
SEE ALSO

NOTES
There is no need to specify the list but the node must be in a list !

BUGS

INTERNALS

HISTORY