diff options
Diffstat (limited to 'include/util/array.h')
-rw-r--r-- | include/util/array.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/util/array.h b/include/util/array.h index 32bc059f..9612e7db 100644 --- a/include/util/array.h +++ b/include/util/array.h @@ -4,6 +4,7 @@ #include <stdint.h> #include <stdlib.h> #include <stdbool.h> +#include <wayland-util.h> size_t push_zeroes_to_end(uint32_t arr[], size_t n); @@ -21,4 +22,9 @@ bool set_add(uint32_t values[], size_t *len, size_t cap, uint32_t target); */ bool set_remove(uint32_t values[], size_t *len, size_t cap, uint32_t target); +/** + * Remove a chunk of memory of the specified size at the specified offset. + */ +void array_remove_at(struct wl_array *arr, size_t offset, size_t size); + #endif |