shithub: snippets

ref: 6669b2c0a19c010493f5343ec136987081672efd
dir: /qp.h/

View raw version
typedef union Trie Trie;
#pragma incomplete Trie

int qpget(Trie *t, char *k, int len, char **pk, void **pv);
int qpnext(Trie *t, char **pk, int *plen, void **pv);
Trie *qpset(Trie *t, char *k, int len, void *v);