This wiki is out of date, use the continuation of this wiki instead

NULL

From FenixWiki

Jump to: navigation, search


[edit] Definition

NULL is a pointer, pointing to nothing. In programming it points to 0x00000000, or just plain 0.

Available since Fenix 0.93.

The following check is the same as checking if a pointer variable is NULL:

if(my_pointer)
end

In which my_pointer is a pointer variable.

Constant - Value - Description
NULL - 0 - 0x00000000, pointing to nothing.
Personal tools