summaryrefslogtreecommitdiffstats
path: root/tcllib/modules/struct/sets/ds.h
diff options
context:
space:
mode:
Diffstat (limited to 'tcllib/modules/struct/sets/ds.h')
-rw-r--r--tcllib/modules/struct/sets/ds.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/tcllib/modules/struct/sets/ds.h b/tcllib/modules/struct/sets/ds.h
new file mode 100644
index 0000000..737dca1
--- /dev/null
+++ b/tcllib/modules/struct/sets/ds.h
@@ -0,0 +1,24 @@
+/* struct::set - critcl - layer 0 declarations
+ * Tcl_ObjType 'set'.
+ */
+
+#ifndef _DS_H
+#define _DS_H 1
+
+#include "tcl.h"
+
+typedef struct S *SPtr;
+
+typedef struct S {
+ Tcl_HashTable el;
+} S;
+
+#endif /* _DS_H */
+
+/*
+ * Local Variables:
+ * mode: c
+ * c-basic-offset: 4
+ * fill-column: 78
+ * End:
+ */