-
Notifications
You must be signed in to change notification settings - Fork 74
/
fpst.h
61 lines (49 loc) · 2.03 KB
/
fpst.h
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#ifndef fpst_H
#define fpst_H 1
#include <stdint.h>
#include <stdlib.h>
/** A trie */
#ifndef fpst_GLOBALS
typedef struct FPST FPST;
#endif
/** Type of the function pointer for `fpst_free()` */
typedef void (*FPST_FreeFn)(const char *key, uint32_t val);
/** Returns an empty trie */
FPST *fpst_new(void);
/**
* Deallocates a trie, optionally calling `free_kv_fn` for each element.
* `free_kv_fn` can be `NULL` if this is not necessary.
*/
void fpst_free(FPST *trie, FPST_FreeFn free_kv_fn);
/**
* Check if the string `str` of length `len` starts with one of the keys
* present in the trie. Returns `1` if this is the case, `0` otherwise.
* If `found_key_p` and/or `found_val_p` are not `NULL`, these are filled
* with the longest matching key and its corresponding value.
*/
int fpst_starts_with_existing_key(FPST *t,
const char *str, size_t len,
const char **found_key_p,
uint32_t *found_val_p);
/**
* Check if the zero-terminated string `str` starts with one of the keys
* present in the trie. Returns `1` if this is the case, `0` otherwise.
* If `found_key_p` and/or `found_val_p` are not `NULL`, these are filled
* with the longest matching key and its corresponding value.
*/
int fpst_str_starts_with_existing_key(FPST *trie, const char *str,
const char **found_key_p, uint32_t *found_val_p);
/** Check if the exact key `key` of length `len` (`\0` not included) exists */
int fpst_has_key(FPST *trie, const char *key, size_t len, uint32_t *found_val_p);
/** Check if the exact zero-terminated key `key` is present in the trie */
int fpst_has_key_str(FPST *trie, const char *key, uint32_t *found_val_p);
/**
* Inserts a key `key` of length `len` (not including the leading `\0`)
* into the trie.
*/
FPST * fpst_insert(FPST *trie, const char *key, size_t len, uint32_t val);
/**
* Inserts a zero-terminated key `key` into the trie.
*/
FPST * fpst_insert_str(FPST *trie, const char *key, uint32_t val);
#endif