node = FindName(start, name)
D0,Z A0 A1
struct Node *FindName(struct List *, STRPTR);
Traverse a system list until a node with the given name is found. To find multiple occurrences of a string, this function may be called with a node starting point.
No arbitration is done for access to the list! If multiple tasks access the same list, an arbitration mechanism such as SignalSemaphores must be used.