From acab5a38813acd70a3308d41be9a7c71cede15e1 Mon Sep 17 00:00:00 2001 From: Max Date: Wed, 16 Sep 2020 14:59:06 -0400 Subject: darray.c progress, added qsort.h, qsort labeled --- include/darray.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'include/darray.h') 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; -- cgit v1.2.3