Mission Base

Program Base Library Functions

int pblListAddLast

( PblList* list, void* element )

Appends the given element to the end of this list.

Documentation

Appends the given element to the end of this list.

(Identical in function to the add method; included only for consistency.)

This method has a time complexity of O(1).

Parameters:
list - The list to add to
element - Element to be added to the list
Returns:
int rc >= 0: The size of this list instance.
int rc < 0: An error, see pbl_errno:
PBL_ERROR_OUT_OF_MEMORY - Out of memory.

Alphabetic index



This page was generated with the help of DOC++.