int ListAppend (ListType list, ListType listToAppend);
This function appends the contents of one list to the end on another.
Input | ||
Name | Type | Description |
list | ListType | The list to which the other list will be appended to. |
listToAppend | ListType | Every item in this list will be added to the end of the other list. This list will remain unchanged. |
Name | Type | Description |
result | integer | Returns non–zero if the operation was succesful. Returns zero (0) if there was not enough memory or if bad arguments were passed to the function. |