/* * ARY.H * * (c)Copyright 2016, Matthew Dillon, All Rights Reserved. See the * COPYRIGHT file at the base of the distribution. */ typedef struct RuneAry { char **av; int ac; int entries; } runeary_t; typedef struct RuneLib { RUNE_ENTRY(RuneLib) node; char *linklib; } runelib_t; typedef RUNE_HEAD(RuneLibList, RuneLib) runelib_list_t;