k = _DTKEY((void*)k,disc->key,disc->size);
r->hash = _DTHSH(dt,k,disc,disc->size);
}
- (void)(*searchf)(dt,(void*)r,DT_RENEW);
+ (void)(*searchf)(dt, r, DT_RENEW);
r = t;
}
}
{ dt->data->size = 0;
while(list)
{ r = list->right;
- (*meth->searchf)(dt,(void*)list,DT_RENEW);
+ (*meth->searchf)(dt, list, DT_RENEW);
list = r;
}
}
key = _DTKEY(key,disc->key,disc->size);
list->hash = _DTHSH(dt,key,disc,disc->size);
}
- (void)(*meth->searchf)(dt,(void*)list,DT_RENEW);
+ (void)(*meth->searchf)(dt, list, DT_RENEW);
list = r;
}
}
}
dt->data->size -= 1;
- return (*dt->meth->searchf)(dt,(void*)e,DT_RENEW) ? obj : NULL;
+ return (*dt->meth->searchf)(dt, e, DT_RENEW) ? obj : NULL;
}
{ dt->data->size = 0;
while(list)
{ t = list->right;
- (*searchf)(dt,(void*)list,DT_RENEW);
+ (*searchf)(dt, list, DT_RENEW);
list = t;
}
}