Important: The information in this document is obsolete and should not be used for new development.
OTAddLast
Adds a link to the end of a FIFO list.C INTERFACE
void OTAddLast (OTList* list, OTLink* link)C++ INTERFACE
None. C++ applications use the C interface to this function.PARAMETERS
list- A pointer to the linked list to which you want to add the link.
link- A pointer to the link to be placed in the list.
DISCUSSION
This function adds the link referenced by thelinkparameter to the end of the FIFO list referenced by thelistparameter.Use the
OTAddFirstfunction to place a link at the front of a FIFO list.Use the
OTRemoveLastfunction to remove the last link in a FIFO list.Use the
OTGetLastfunction to obtain a pointer to the last link in a FIFO list.