Skip to content

MEM_set_arr

BigETI edited this page May 4, 2018 · 1 revision

Description

Set array

Returns

Pointer of the arr variable if successful, otherwise MEM_NULLFEPTR.

Syntax

ForeignPointer:MEM_set_arr(Pointer:pointer, index = 0, const arr[], arr_size = sizeof arr)

Example

new arr[10] = { 100, ... }, Pointer:pointer = MEM_new(sizeof arr);
MEM_set_arr(pointer, _, arr);
Clone this wiki locally