ListMergeR
ListMergeR
Description
Merge two lists and store the result in first list.
Merge list
l2 with l with r-value semantics.
Parameters
| Name | Direction | Description |
|---|---|---|
l |
in,out | List to insert array items into. |
l2 |
in | Array to be inserted. |
Success
Return.
Failure
Do not return.
Usage example (Cross-references)
Usage examples (Cross-references)
- In
ListInt.c:204:
}
ListMergeR(list, &temp);
ListDeinit(&temp); // Clean up temp to prevent memory leak
break;
Last updated on