You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
configreader/linearray.h

18 lines
347 B

1 year ago
#ifndef __LINEARRAY_H
#define __LINEARRAY_H
#include <exec/types.h>
#include <proto/containerkit.h>
#include <dos/dos.h>
#include "configmodel.h"
#define LineArray Array
LineArray LineArrayNew(VOID);
VOID LineArrayAppend(LineArray array, LINEPTR value);
VOID LineArrayFree(LineArray array);
LINEPTR* LineArrayValues(LineArray array);
#endif