FindNamedNode

Finds a node by name.

Synopsis

Node *FindNamedNode( const List *l, const char *name )

Description

This procedure searches a list for a node with the specified name. The search is not case-sensitive (that is, the kernel does not distinguish uppercase and lowercase letters in node names).

Arguments

l
A pointer to the list to search.
name
The name of the node to find.

Return Value

The procedure returns a pointer to the node structure or NULL if the named node couldn't be found.

Implementation

Folio call implemented in kernel folio V20.

Associated Files

list.h
ANSI C Prototype
clib.lib
ARM Link Library

See Also

FirstNode(), LastNode(), NextNode(), PrevNode()