void htp_table_destroy(htp_table_t *table)
Definition: htp_table.c:168
size_t htp_table_size(const htp_table_t *table)
Definition: htp_table.c:249
void htp_table_destroy_ex(htp_table_t *table)
Definition: htp_table.c:179
htp_status_t htp_table_addk(htp_table_t *table, const bstr *key, const void *element)
Definition: htp_table.c:106
void * htp_table_get_c(const htp_table_t *table, const char *ckey)
Definition: htp_table.c:205
int htp_status_t
Definition: htp_core.h:46
htp_status_t htp_table_addn(htp_table_t *table, const bstr *key, const void *element)
Definition: htp_table.c:85
htp_table_t * htp_table_create(size_t size)
Definition: htp_table.c:150
void htp_table_clear_ex(htp_table_t *table)
Definition: htp_table.c:142
htp_status_t htp_table_add(htp_table_t *table, const bstr *key, const void *element)
Definition: htp_table.c:56
void htp_table_clear(htp_table_t *table)
Definition: htp_table.c:127
void * htp_table_get_index(const htp_table_t *table, size_t idx, bstr **key)
Definition: htp_table.c:221
void * htp_table_get_mem(const htp_table_t *table, const void *key, size_t key_len)
Definition: htp_table.c:233
void * htp_table_get(const htp_table_t *table, const bstr *key)
Definition: htp_table.c:189
Definition: htp_table_private.h:63