Sets the current position of the stack.
     
 
Integer_Type stk_set_current( Stack_Type stack, Integer_Type N ) 
 
      
         Set the current position in the stack to position N.  If
         successful the return value is 0, a non-zero value indicates
         failure.  If the routine fails, the stack position is not determined.
       
     
() = stk_set_current( stk, 2 );  
          
            Here we set the current position of the stack, stored
	    in the variable stk, to 2. The return value is ignored.
           
         
 
- modules
 
- 
stackio
 
- stackio
 
- 
stk_append,
stk_build,
stk_change_current,
stk_change_num,
stk_close,
stk_count,
stk_current,
stk_delete_current,
stk_delete_num,
stk_disp,
stk_expand_n,
stk_read_next,
stk_read_num,
stk_rewind
 
 
 
 |