(C) 1998 AROS - The Amiga Research OS


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

struct Node * RemHead (list)

LOCATION
In SysBase at offset 43

SYNOPSIS
struct List * list

FUNCTION
Remove the first 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 * head;

// Remove node and return it
head = RemHead (list);
SEE ALSO

NOTES

BUGS

INTERNALS

HISTORY