summaryrefslogtreecommitdiff
path: root/libdyn/dyn_size.c
diff options
context:
space:
mode:
Diffstat (limited to 'libdyn/dyn_size.c')
-rw-r--r--libdyn/dyn_size.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/libdyn/dyn_size.c b/libdyn/dyn_size.c
new file mode 100644
index 0000000..773db4a
--- /dev/null
+++ b/libdyn/dyn_size.c
@@ -0,0 +1,24 @@
+/*
+ * This file is part of libdyn.a, the C Dynamic Object library. It
+ * contains the source code for the function DynSize().
+ *
+ * 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.
+ */
+
+#include <stdio.h>
+
+#include "dynP.h"
+
+int DynSize(obj)
+ DynObjectP obj;
+{
+ if (obj->debug)
+ fprintf(stderr, "dyn: size: returning size %d.\n", obj->num_el);
+
+ return obj->num_el;
+}