aboutsummaryrefslogtreecommitdiff
path: root/include/util/array.h
blob: 2b7278cccdad62cdca10cfcbd9a3403565f476f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#ifndef UTIL_ARRAY_H
#define UTIL_ARRAY_H

#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);

/**
 * 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);

/**
 * 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);

/**
 * Grow or shrink the array to fit the specifized size.
 */
bool array_realloc(struct wl_array *arr, size_t size);

#endif