Rune - Further Object abstraction work
[rune.git] / libruntime / ary.h
1 /*
2  * ARY.H
3  *
4  * (c)Copyright 2016, Matthew Dillon, All Rights Reserved.  See the COPYRIGHT
5  * file at the base of the distribution.
6  */
7
8 typedef struct RuneAry {
9     char  **av;
10     int     ac;
11     int     entries;
12 } runeary_t;
13
14 typedef struct RuneLib {
15     RUNE_ENTRY(RuneLib) node;
16     char   *linklib;
17 } runelib_t;
18
19 typedef RUNE_HEAD(RuneLibList, RuneLib) runelib_list_t;