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.
|
|
|
#include "strlist.h"
|
|
|
|
const char * cw_strlist_get_str(struct cw_StrListElem *s,int id)
|
|
{
|
|
while ( s->id!=CW_STR_STOP){
|
|
if (s->id==id)
|
|
break;
|
|
s++;
|
|
}
|
|
return s->str;
|
|
}
|
|
|
|
|