ds_stack_create()

From ENIGMA
Jump to navigation Jump to search

Description

Creates a new data structure stack.

Parameters

Parameter Description
none This function has no parameters.

Return Values

unsigned int: Returns the index of the newly created stack.

Example Call

// demonstrates creating a data structure stack
var stack;
stack = ds_stack_create();