summaryrefslogtreecommitdiff
path: root/libdyn/dyn.h
diff options
context:
space:
mode:
authorGravatar Kenneth G Raeburn <raeburn@mit.edu>1990-11-16 06:41:56 +0000
committerGravatar Kenneth G Raeburn <raeburn@mit.edu>1990-11-16 06:41:56 +0000
commite17eedd8e03e6e429d6d0587baf055fe3ff4f29c (patch)
treecfe5308b659f1633f381e7d31bca01f6f14b3c06 /libdyn/dyn.h
parent35c501612c73a9e46b211223438d6acf6d3fef4f (diff)
Initial revision
Diffstat (limited to 'libdyn/dyn.h')
-rw-r--r--libdyn/dyn.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/libdyn/dyn.h b/libdyn/dyn.h
new file mode 100644
index 0000000..2d605ff
--- /dev/null
+++ b/libdyn/dyn.h
@@ -0,0 +1,47 @@
+/*
+ * This file is part of libdyn.a, the C Dynamic Object library. It
+ * contains the public header file.
+ *
+ * There are no restrictions on this code; however, if you make any
+ * changes, I request that you document them so that I do not get
+ * credit or blame for your modifications.
+ *
+ * Written by Barr3y Jaspan, Student Information Processing Board (SIPB)
+ * and MIT-Project Athena, 1989.
+ */
+
+
+/*
+ * dyn.h -- header file to be included by programs linking against
+ * libdyn.a.
+ */
+
+#ifndef _Dyn_h
+#define _Dyn_h
+
+#ifdef notdef
+typedef void *DynPtr;
+#else
+typedef char *DynPtr;
+#endif
+
+typedef struct _DynObject DynObjectRec, *DynObject;
+
+/* Function macros */
+#define DynHigh(obj) (DynSize(obj) - 1)
+#define DynLow(obj) (0)
+
+/* Return status codes */
+#define DYN_OK -1000
+#define DYN_NOMEM -1001
+#define DYN_BADINDEX -1002
+#define DYN_BADVALUE -1003
+
+/* Function declarations */
+DynObject DynCreate();
+int DynAdd(), DynDelete(), DynDestroy(), DynDebug();
+int DynInsert(), DynParanoid();
+DynPtr DynGet();
+
+#endif /* _Dyn_h */
+/* DO NOT ADD ANYTHING AFTER THIS #endif */