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.