2022-08-19 20:19:30 +02:00
|
|
|
#ifndef UTIL_SET_H
|
|
|
|
#define UTIL_SET_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
2022-08-19 20:20:43 +02:00
|
|
|
#include <sys/types.h>
|
2022-08-19 20:19:30 +02:00
|
|
|
|
|
|
|
/**
|
2022-08-19 20:20:43 +02:00
|
|
|
* Add target to values.
|
|
|
|
*
|
|
|
|
* Target is added to the end of the set.
|
|
|
|
*
|
|
|
|
* Returns the index of target, or -1 if the set is full or target already
|
|
|
|
* exists.
|
2022-08-19 20:19:30 +02:00
|
|
|
*/
|
2022-08-19 20:20:43 +02:00
|
|
|
ssize_t set_add(uint32_t values[], size_t *len, size_t cap, uint32_t target);
|
2022-08-19 20:19:30 +02:00
|
|
|
|
|
|
|
/**
|
2022-08-19 20:20:43 +02:00
|
|
|
* Remove target from values.
|
|
|
|
*
|
|
|
|
* When target is removed, the last element of the set is moved to where
|
|
|
|
* target was.
|
|
|
|
*
|
|
|
|
* Returns the previous index of target, or -1 if target wasn't in values.
|
2022-08-19 20:19:30 +02:00
|
|
|
*/
|
2022-08-19 20:20:43 +02:00
|
|
|
ssize_t set_remove(uint32_t values[], size_t *len, size_t cap, uint32_t target);
|
2022-08-19 20:19:30 +02:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|