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/cw_strlist_get_str.c

13 lines
176 B

#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;
}