cad0c6ab18
FossilOrigin-Name: 41573b74d0d433b2e62feb78e580cbb351fee08b441e6735237cd3201a49a4e4
19 lines
328 B
C
19 lines
328 B
C
#ifndef __STRHEAP_H
|
|
#define __STRHEAP_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "strlist.h"
|
|
#include "mavl.h"
|
|
|
|
|
|
typedef struct mavl * cw_strheap_t;
|
|
|
|
|
|
extern cw_strheap_t cw_strheap_create();
|
|
extern int cw_strheap_register_strings(cw_strheap_t h, struct cw_strlist_elem *s);
|
|
|
|
const char * cw_strheap_get(cw_strheap_t h, int id);
|
|
|
|
#endif
|