moved unsied files, compiles w/o waringins with clang

FossilOrigin-Name: 1189a474bfcc28195d888d7967ccfc50c812f194e1ee19e99d3cb244d666a19a
This commit is contained in:
7u83@mail.ru
2018-03-25 08:07:39 +00:00
parent c1f1d91b28
commit 847781bf7c
70 changed files with 130 additions and 492 deletions

View File

@ -37,9 +37,10 @@ int cw_strheap_register_strings(cw_strheap_t h, struct cw_StrListElem *s)
const char * cw_strheap_get(cw_strheap_t h, int id) {
struct cw_StrListElem *r;
struct cw_StrListElem s;
s.id=id;
struct cw_StrListElem *r = mavl_get(h,&s);
r = mavl_get(h,&s);
if (r)
return r->str;
return NULL;