13 lines
166 B
C
13 lines
166 B
C
#include "capwap.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;
|
|
}
|
|
|