(C) 1998 AROS - The Amiga Research OS


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

struct Node * FindName (list , name)

LOCATION
In SysBase at offset 46

SYNOPSIS
struct List * list
UBYTE * name

FUNCTION
Look for a node with a certain name in a list.

INPUTS
list
Search this list.
name
This is the name to look for.

RESULT

EXAMPLE
struct List * list;
struct Node * node;

// Look for a node with the name "Hello"
node = FindName (list, "Hello");
SEE ALSO

NOTES
The search is case-sensitive, so "Hello" will not find a node named "hello".

The list must contain complete Nodes and no MinNodes.

BUGS

INTERNALS

HISTORY