NAME NewList -- prepare a list structure for use SYNOPSIS NewList(list) VOID NewList(struct List *); VOID NewList(struct MinList *); FUNCTION Perform the magic needed to prepare a List header structure for use; the list will be empty and ready to use. (If the list is the full featured type, you may need to initialize lh_Type afterwards) Assembly programmers may want to use the NEWLIST macro instead. INPUTS list - pointer to a List or MinList. SEE ALSO <exec/lists.h>