summaryrefslogtreecommitdiff
path: root/include/darray.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/darray.h')
-rw-r--r--include/darray.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/darray.h b/include/darray.h
index 2859cd4..ff592ce 100644
--- a/include/darray.h
+++ b/include/darray.h
@@ -5,6 +5,11 @@
extern "C" {
#endif
+#include "types.h"
+
+typedef int (*SortFunction)(const void *, const void *);
+typedef BOOL (*MapFunction)(const void *, s32);
+
typedef struct DArray {
s32 size;
s32 capacity;