AC-Tube
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
actube/src/cw/strheap.h

18 lines
327 B

#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