ListAppend
int ListAppend (ListType list, ListType listToAppend);
Purpose
This function appends the contents of one list to the end on another.
Parameters
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. |
Return Value
Name | Type | Description |
result | int | 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. |
Additional Information
Library: Programmer's Toolbox
Include file: toolbox\toolbox.h
LabWindows/CVI compatibility: LabWindows/CVI 4.0 and later