/*Prototype:*/ void pop_n_elems(INT32 elems);pop_n_elems() is a function that pops n elements from the stack. Normally this function is called at the end of a C level function that has 'arguments' on the stack. The most usual call is:
/*Example of usage:*/ pop_n_elems(args);This pops the top args elements from the stack. If the stack has not been altered since the function was called then that is the same as removing the 'arguments' from the stack. There is also a function called pop_stack().
/*Example of usage:*/ pop_stack();This function can be called instead of pop_n_elems() if top element on the stack is to be removed.