14 lines
168 B
C
14 lines
168 B
C
|
|
#include "strlist.h"
|
|
|
|
const char * cw_strlist_get_str(struct cw_str *s,int id)
|
|
{
|
|
while ( s->id!=CW_STR_STOP){
|
|
if (s->id==id)
|
|
break;
|
|
s++;
|
|
}
|
|
return s->str;
|
|
}
|
|
|