perl 4.0 patch 14: patch #11, continued
[p5sagit/p5-mst-13.2.git] / array.h
diff --git a/array.h b/array.h
index d8dfe54..980672d 100644 (file)
--- a/array.h
+++ b/array.h
@@ -1,22 +1,32 @@
-/* $Header: array.h,v 2.0 88/06/05 00:08:21 root Exp $
+/* $RCSfile: array.h,v $$Revision: 4.0.1.1 $$Date: 91/06/07 10:19:20 $
+ *
+ *    Copyright (c) 1991, Larry Wall
+ *
+ *    You may distribute under the terms of either the GNU General Public
+ *    License or the Artistic License, as specified in the README file.
  *
  * $Log:       array.h,v $
- * Revision 2.0  88/06/05  00:08:21  root
- * Baseline version 2.0.
+ * Revision 4.0.1.1  91/06/07  10:19:20  lwall
+ * patch4: new copyright notice
+ * 
+ * Revision 4.0  91/03/20  01:03:44  lwall
+ * 4.0 baseline.
  * 
  */
 
 struct atbl {
     STR        **ary_array;
+    STR **ary_alloc;
     STR *ary_magic;
     int ary_max;
     int ary_fill;
-    int ary_index;
+    char ary_flags;
 };
 
+#define ARF_REAL 1     /* free old entries */
+
 STR *afetch();
 bool astore();
-bool adelete();
 STR *apop();
 STR *ashift();
 void afree();
@@ -24,3 +34,4 @@ void aclear();
 bool apush();
 int alen();
 ARRAY *anew();
+ARRAY *afake();