8b2e36e912
FossilOrigin-Name: 440ee8b077901e593d994ef900088b648204f1c8637b35189a5cddd18ec8f08f
13 lines
249 B
C
13 lines
249 B
C
#include "mlist.h"
|
|
|
|
struct mlistelem * mlist_get(mlist_t list, const void *data){
|
|
struct mlistelem * elem;
|
|
mlist_foreach(elem,list){
|
|
void *tdata = mlistelem_dataptr(elem);
|
|
if (list->cmp(tdata,data)==0){
|
|
return tdata;
|
|
}
|
|
}
|
|
return NULL;
|
|
}
|