From c3ee63be77476af770134b39d31758eb6a0ef69f Mon Sep 17 00:00:00 2001 From: Antonio Borneo Date: Fri, 18 Jun 2010 11:43:09 +0800 Subject: helper/jim: review unused symbols MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove unused functions: - Jim_IdentityHashFunction - StringAppendObj - JimReferencesHTDoubleHashFunction Signed-off-by: Antonio Borneo Signed-off-by: Øyvind Harboe --- src/helper/jim.c | 24 ------------------------ 1 file changed, 24 deletions(-) (limited to 'src/helper') diff --git a/src/helper/jim.c b/src/helper/jim.c index 91f1ea5d..7fdf52c5 100644 --- a/src/helper/jim.c +++ b/src/helper/jim.c @@ -656,12 +656,6 @@ static unsigned int Jim_IntHashFunction(unsigned int key) return key; } -/* Identity hash function for integer keys */ -unsigned int Jim_IdentityHashFunction(unsigned int key) -{ - return key; -} - /* Generic hash function (we are using to multiply by 9 and add the byte * as Tcl) */ static unsigned int Jim_GenHashFunction(const unsigned char *buf, int len) @@ -2040,16 +2034,6 @@ static void StringAppendString(Jim_Obj *objPtr, const char *str, int len) objPtr->length += len; } -/* Low-level wrapper to append an object. */ -void StringAppendObj(Jim_Obj *objPtr, Jim_Obj *appendObjPtr) -{ - int len; - const char *str; - - str = Jim_GetString(appendObjPtr, &len); - StringAppendString(objPtr, str, len); -} - /* Higher level API to append strings to objects. */ void Jim_AppendString(Jim_Interp *interp, Jim_Obj *objPtr, const char *str, int len) @@ -4029,14 +4013,6 @@ static unsigned int JimReferencesHTHashFunction(const void *key) return Jim_IntHashFunction(intValue); } -unsigned int JimReferencesHTDoubleHashFunction(const void *key) -{ - /* Only the least significant bits are used. */ - const jim_wide *widePtr = key; - unsigned int intValue = (unsigned int) *widePtr; - return intValue; /* identity function. */ -} - static const void *JimReferencesHTKeyDup(void *privdata, const void *key) { void *copy = Jim_Alloc(sizeof(jim_wide)); -- cgit v1.2.3