Skip to content

MEM_get_size

BigETI edited this page May 4, 2018 · 1 revision

Description

Get size

Returns

Size of the allocated data in cells if valid, otherwise 0.

Syntax

MEM_get_size(Pointer:pointer)

Example

new Pointer:pointer = MEM_new_val(1);
printf("Size of \"pointer\" is %d", MEM_get_size(pointer));
Clone this wiki locally