#ifndef __LINEARRAY_H #define __LINEARRAY_H #include #include "types.h" #include #include LineArray LineArrayNew(VOID); VOID LineArrayAppend(LineArray array, LINEPTR value); VOID LineArrayInsert(LineArray array, LINEPTR value, ULONG pos); VOID LineArrayFree(LineArray array, BOOL freeLines); LINEPTR* LineArrayValues(LineArray array); #endif