d4fa4269e7
FossilOrigin-Name: 4f1f8f238cb3fd097504bfba3b51805d359135256160fe8fdba34908495ec50b
19 lines
327 B
C
19 lines
327 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_StrListElem *s);
|
|
|
|
const char * cw_strheap_get(cw_strheap_t h, int id);
|
|
|
|
#endif
|