Table of Contents

RemHead

Removes the first node from a list.

Synopsis

Node *RemHead( List *l )

Description

This procedure removes the head (first) node from a list.

Arguments

Return Value

The procedure returns a pointer to the node that was removed from the list or NULL if the list is empty.

Implementation

Folio call implemented in kernel folio V20.

Associated Files

See Also

AddHead(), AddTail(), InsertNodeFromTail(), RemNode(), RemTail()