Next Previous Contents

85. SLang_peek_at_stack

Synopsis

Find the type of object on the top of the stack

Usage

int SLang_peek_at_stack (void)

Description

The SLang_peek_at_stack function is useful for determining the data type of the object at the top of the stack. It returns the data type, or -1 upon a stack-underflow error. It does not remove anything from the stack.

See Also

SLang_pop_string, SLang_pop_integer


Next Previous Contents