perl 1.0 patch 12: scripts made by a2p doen't handle leading white space right on...
[p5sagit/p5-mst-13.2.git] / array.h
1 /* $Header: array.h,v 1.0 87/12/18 13:04:46 root Exp $
2  *
3  * $Log:        array.h,v $
4  * Revision 1.0  87/12/18  13:04:46  root
5  * Initial revision
6  * 
7  */
8
9 struct atbl {
10     STR **ary_array;
11     int ary_max;
12     int ary_fill;
13 };
14
15 STR *afetch();
16 bool astore();
17 bool adelete();
18 STR *apop();
19 STR *ashift();
20 bool apush();
21 long alen();
22 ARRAY *anew();