ListReverse
- Macro
- October 8, 2025
Table of Contents
ListReverse
ListReverseDescription
Reverse contents of this list.
Parameters
| Name | Direction | Description |
|---|---|---|
l | in,out | List to be reversed. |
Success
v
Failure
NULL
Usage example (Cross-references)
- In
ListInt.c:123:
// Advanced operations
case LIST_INT_REVERSE : {
ListReverse(list);
break;
}