]> granicus.if.org Git - php/commitdiff
rename hastable -> _hashtable to avoid clashes
authorThies C. Arntzen <thies@php.net>
Wed, 24 May 2000 09:52:57 +0000 (09:52 +0000)
committerThies C. Arntzen <thies@php.net>
Wed, 24 May 2000 09:52:57 +0000 (09:52 +0000)
Zend/zend_hash.h

index 16641fa98c3f44e8288e5f61d434d7364ec45a49..abb82123b8cd0fcfb57f318a206177fd1defa8ac 100644 (file)
@@ -41,7 +41,7 @@ typedef int (*apply_func_arg_t)(void *pDest, void *argument);
 typedef ulong (*hash_func_t)(char *arKey, uint nKeyLength);
 typedef void (*copy_ctor_func_t)(void *pElement);
 
-struct hashtable;
+struct _hashtable;
 
 typedef struct bucket {
        ulong h;                                                /* Used for numeric indexing */
@@ -55,7 +55,7 @@ typedef struct bucket {
        char arKey[1]; /* Must be last element */
 } Bucket;
 
-typedef struct hashtable {
+typedef struct _hashtable {
        uint nTableSize;
        uint nHashSizeIndex;
        uint nNumOfElements;