]> git.sur5r.net Git - cc65/commitdiff
The ..Entry functions from the hashtable module have been renamed.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 21 Aug 2011 13:33:06 +0000 (13:33 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 21 Aug 2011 13:33:06 +0000 (13:33 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@5244 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/common/strpool.c

index 87cb2466b9dfeac4e9fdb1bf309d96f4736dc3fa..12623b25c7b6858f345c8bf3b5ae791f37ca8650 100644 (file)
@@ -233,7 +233,7 @@ unsigned SP_Add (StringPool* P, const StrBuf* S)
  */
 {
     /* Search for a matching entry in the hash table */
-    StringPoolEntry* E = HT_FindEntry (&P->Tab, S);
+    StringPoolEntry* E = HT_Find (&P->Tab, S);
 
     /* Did we find it? */
     if (E != 0) {
@@ -245,7 +245,7 @@ unsigned SP_Add (StringPool* P, const StrBuf* S)
         CollAppend (&P->Entries, E);
 
         /* Insert the new entry into the hash table */
-        HT_InsertEntry (&P->Tab, E);
+        HT_Insert (&P->Tab, E);
 
         /* Add up the string size */
         P->TotalSize += SB_GetLen (&E->Buf);
@@ -280,7 +280,7 @@ unsigned SP_GetCount (const StringPool* P)
 /* Return the number of strings in the pool */
 {
     return CollCount (&P->Entries);
-}
+}