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>
|
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);
|
|
|
|
|
2018-07-07 17:56:37 +02:00
|
|
|
#endif
|