2020-11-25 16:19:00 +00:00
|
|
|
#ifndef COSMOPOLITAN_LIBC_ALG_CRITBIT0_H_
|
|
|
|
#define COSMOPOLITAN_LIBC_ALG_CRITBIT0_H_
|
2023-11-16 04:57:18 +00:00
|
|
|
#include "libc/stdbool.h"
|
2020-11-25 16:19:00 +00:00
|
|
|
COSMOPOLITAN_C_START_
|
|
|
|
/*───────────────────────────────────────────────────────────────────────────│─╗
|
|
|
|
│ cosmopolitan § data structures » critical bit tree (for c strings) ─╬─│┼
|
|
|
|
╚────────────────────────────────────────────────────────────────────────────│*/
|
|
|
|
|
|
|
|
struct critbit0 {
|
|
|
|
void *root;
|
|
|
|
size_t count;
|
|
|
|
};
|
|
|
|
|
2024-01-09 09:26:03 +00:00
|
|
|
bool critbit0_contains(struct critbit0 *, const char *) libcesque nosideeffect
|
2020-11-25 16:19:00 +00:00
|
|
|
paramsnonnull();
|
2022-07-22 11:19:01 +00:00
|
|
|
int critbit0_insert(struct critbit0 *, const char *) paramsnonnull();
|
2024-01-09 09:26:03 +00:00
|
|
|
bool critbit0_delete(struct critbit0 *, const char *) libcesque paramsnonnull();
|
|
|
|
void critbit0_clear(struct critbit0 *) libcesque paramsnonnull();
|
2020-11-25 16:19:00 +00:00
|
|
|
char *critbit0_get(struct critbit0 *, const char *);
|
|
|
|
intptr_t critbit0_allprefixed(struct critbit0 *, const char *,
|
|
|
|
intptr_t (*)(const char *, void *), void *)
|
2024-01-09 09:26:03 +00:00
|
|
|
paramsnonnull((1, 2, 3)) libcesque;
|
2023-08-16 14:54:40 +00:00
|
|
|
int critbit0_emplace(struct critbit0 *, const void *, size_t) paramsnonnull();
|
2020-11-25 16:19:00 +00:00
|
|
|
|
|
|
|
COSMOPOLITAN_C_END_
|
|
|
|
#endif /* COSMOPOLITAN_LIBC_ALG_CRITBIT0_H_ */
|