ListMergeR
- Macro
- October 8, 2025
Table of Contents
ListMergeR
ListMergeR
Description
Merge two lists and store the result in first list.
Note
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)
- In
ListInt.c:204
:
}
ListMergeR(list, &temp);
ListDeinit(&temp); // Clean up temp to prevent memory leak
break;