PushStackString Function

Pushes a copy of a string onto the end of a stack, truncating it if it is too big.

void PushStackString(Handle stack, const char[] value)

Parameters

Handle stack

Stack Handle.

const char[] value

String to push.

Errors

Invalid Handle or out of memory.