perl 1.0 patch 14: a2p incorrectly translates 'for (a in b)' construct.
[p5sagit/p5-mst-13.2.git] / array.h
CommitLineData
8d063cd8 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
9struct atbl {
10 STR **ary_array;
11 int ary_max;
12 int ary_fill;
13};
14
15STR *afetch();
16bool astore();
17bool adelete();
18STR *apop();
19STR *ashift();
20bool apush();
21long alen();
22ARRAY *anew();