f4ebe841a5
FossilOrigin-Name: 8a43dd9d05a4cb73210243ddd8df2a26f16c7ef2c4d4e36ab446de1f65d88223
14 lines
177 B
C
14 lines
177 B
C
|
|
#include "strlist.h"
|
|
|
|
const char * cw_strlist_get_str(struct cw_strlist_elem *s,int id)
|
|
{
|
|
while ( s->id!=CW_STR_STOP){
|
|
if (s->id==id)
|
|
break;
|
|
s++;
|
|
}
|
|
return s->str;
|
|
}
|
|
|