2018-07-07 17:56:37 +02:00
|
|
|
#ifndef UTIL_ARRAY_H
|
|
|
|
#define UTIL_ARRAY_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
2019-06-15 20:08:53 +02:00
|
|
|
#include <stdbool.h>
|
2021-07-01 09:57:30 +02:00
|
|
|
#include <wayland-util.h>
|
2018-07-07 17:56:37 +02:00
|
|
|
|
|
|
|
size_t push_zeroes_to_end(uint32_t arr[], size_t n);
|
|
|
|
|
2019-06-15 20:08:53 +02:00
|
|
|
/**
|
|
|
|
* 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);
|
|
|
|
|
2021-07-01 09:57:30 +02:00
|
|
|
/**
|
|
|
|
* 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);
|
|
|
|
|
2018-07-07 17:56:37 +02:00
|
|
|
#endif
|