1/* struct::stack - critcl - layer 1 declarations
2 * (c) Stack functions
3 */
4
5#ifndef _S_H
6#define _S_H 1
7
8#include "tcl.h"
9#include <ds.h>
10
11SPtr st_new	 (void);
12void st_delete	 (SPtr s);
13int  st_peek     (SPtr s, Tcl_Interp* interp, int n,
14		  int pop, int listall, int revers, int ret);
15
16#endif /* _T_H */
17
18/*
19 * Local Variables:
20 * mode: c
21 * c-basic-offset: 4
22 * fill-column: 78
23 * End:
24 */
25