ListInit

01 Initializes a list for usage.
02

void ListInit(ListEntry *pList);

03 Parameters:
  • pList: Pointer to the list to initialize.
04 This function initializes the members of the ListEntry structure to point to the structure itself, creating an empty list.
05 A list has to be initialized with this function before any other list functions can be used on it.
06 Reference: SemysList.h
Implementation: Semys Library
See Also: List Sub-System

Goto: Main Page; This page is part of the Semys software documentation. See About: Documentation for details.