ListPushArrL
ListPushArrL
Description
Push a complete array into this list.
If provided list
l does not make it’s own copy of items, the provided array arr will be memset to 0, to keep single ownership.
Parameters
| Name | Direction | Description |
|---|---|---|
l |
in,out | List to insert array items into. |
arr |
in | Array to be inserted. |
count |
in | Number (non-zero) of items in array. |
Success
Return.
Failure
Do not return.
Usage example (Cross-references)
Usage examples (Cross-references)
- In
ListInt.c:171:
values[i] = (i32)extract_u32(data, offset, size);
}
ListPushArrL(list, values, count);
}
break;
Last updated on