X-Git-Url: https://git.rrq.au/?a=blobdiff_plain;f=vector%2Fstringitem.c;h=ee8f2cba74695f39f16faf47eb8aaa4facd3d9cf;hb=e938f8c45fd191d96da48f65262e4efcfada7805;hp=d53576dd540f62ff6832af3b265de6271339af94;hpb=62e848c28a7083828fd47cbd8a29fbc875cf3ecb;p=rrq%2Frrqmisc.git diff --git a/vector/stringitem.c b/vector/stringitem.c index d53576d..ee8f2cb 100644 --- a/vector/stringitem.c +++ b/vector/stringitem.c @@ -1,18 +1,18 @@ #include #include -#include +#include /** * This callback function returns the hashcode of a key. The hashcode - * is used for indexing into the backing vector for finding the an + * is used for indexing into the backing Vector for finding the an * item via its key. The same key must map consistently to the same * hashcode while the hashtable contains an item with that key. * Different keys map map to the same hashcode, in which case the - * vector placement is made at the first empty or hole slot following + * Vector placement is made at the first empty or hole slot following * the hashcode index. */ static unsigned long stringitem_hashcode(void *this,void *key) { - return hashvector_hashcode( (unsigned char*)key, strlen( (char*)key ) ); + return HashVector_hashcode( (unsigned char*)key, strlen( (char*)key ) ); } /** @@ -49,7 +49,7 @@ static int stringitem_tostring(void *this,void *item,char *buffer,int limit) { return snprintf( buffer, limit, "(null)" ); } -itemkeyfun stringitem = { +ItemKeyFun stringitem = { .hashcode = stringitem_hashcode, .haskey = stringitem_haskey, .itemkey = stringitem_itemkey,