-
Notifications
You must be signed in to change notification settings - Fork 9
MEM_is_valid_ptr
BigETI edited this page May 4, 2018
·
1 revision
Is valid pointer
true
if valid, otherwise false
.
bool:MEM_is_valid_ptr(Pointer:pointer)
new Pointer:pointer = MEM_new_val(1);
printf("\"pointer\" is %s", (MEM_is_valid_ptr(pointer) ? ("valid") : ("not valid")));