aboutsummaryrefslogtreecommitdiff
path: root/include/util/array.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/util/array.h')
-rw-r--r--include/util/array.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/util/array.h b/include/util/array.h
index 1c046e1d..32bc059f 100644
--- a/include/util/array.h
+++ b/include/util/array.h
@@ -3,7 +3,22 @@
#include <stdint.h>
#include <stdlib.h>
+#include <stdbool.h>
size_t push_zeroes_to_end(uint32_t arr[], size_t n);
+/**
+ * Add `target` to `values` if it doesn't exist
+ * "set"s should only be modified with set_* functions
+ * Values MUST be greater than 0
+ */
+bool set_add(uint32_t values[], size_t *len, size_t cap, uint32_t target);
+
+/**
+ * Remove `target` from `values` if it exists
+ * "set"s should only be modified with set_* functions
+ * Values MUST be greater than 0
+ */
+bool set_remove(uint32_t values[], size_t *len, size_t cap, uint32_t target);
+
#endif