summaryrefslogtreecommitdiff
path: root/array.h
blob: 4ad948796d032f56cfa2f8d3a942496b6d00d2c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* $Header: array.h,v 1.0 87/12/18 13:04:46 root Exp $
 *
 * $Log:	array.h,v $
 * Revision 1.0  87/12/18  13:04:46  root
 * Initial revision
 * 
 */

struct atbl {
    STR	**ary_array;
    int	ary_max;
    int	ary_fill;
};

STR *afetch();
bool astore();
bool adelete();
STR *apop();
STR *ashift();
bool apush();
long alen();
ARRAY *anew();