perl 2.0 patch 1: removed redundant debugging code in regexp.c
[p5sagit/p5-mst-13.2.git] / array.h
CommitLineData
378cc40b 1/* $Header: array.h,v 2.0 88/06/05 00:08:21 root Exp $
8d063cd8 2 *
3 * $Log: array.h,v $
378cc40b 4 * Revision 2.0 88/06/05 00:08:21 root
5 * Baseline version 2.0.
8d063cd8 6 *
7 */
8
9struct atbl {
10 STR **ary_array;
378cc40b 11 STR *ary_magic;
12 int ary_max;
13 int ary_fill;
14 int ary_index;
8d063cd8 15};
16
17STR *afetch();
18bool astore();
19bool adelete();
20STR *apop();
21STR *ashift();
378cc40b 22void afree();
23void aclear();
8d063cd8 24bool apush();
378cc40b 25int alen();
8d063cd8 26ARRAY *anew();