1/* struct::set - critcl - layer 0 declarations
2 * Tcl_ObjType 'set'.
3 */
4
5#ifndef _DS_H
6#define _DS_H 1
7
8#include "tcl.h"
9
10typedef struct S *SPtr;
11
12typedef struct S {
13    Tcl_HashTable el;
14} S;
15
16#endif /* _DS_H */
17
18/*
19 * Local Variables:
20 * mode: c
21 * c-basic-offset: 4
22 * fill-column: 78
23 * End:
24 */
25