The following function is quoted from Judy source code:
//
************************************************** **************************
// J U D Y F R E E
void JudyFree(
void * PWord,
Word_t Words)
{
(void) Words;
free(PWord);
} // JudyFree()
Obviously, this is a wrapper routine to free memory. However, what's
the purpose of (void)Words ?
Also, learned from the calling codes, I think the second parameter is
the size of memory pointed by the first parameter.
Thanks
---
zf