util/array: add array_remove_at

This commit is contained in:
Simon Ser 2021-07-01 09:57:30 +02:00 committed by Simon Zeni
parent dbb0e2f75b
commit a6ed4ae308
2 changed files with 15 additions and 0 deletions

View file

@ -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