From: Thies C. Arntzen Date: Wed, 24 May 2000 09:52:57 +0000 (+0000) Subject: rename hastable -> _hashtable to avoid clashes X-Git-Tag: PRE_EIGHT_BYTE_ALLOC_PATCH~274 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9b916e6a480f41607af86b685de78556c5cbb46e;p=php rename hastable -> _hashtable to avoid clashes --- diff --git a/Zend/zend_hash.h b/Zend/zend_hash.h index 16641fa98c..abb82123b8 100644 --- a/Zend/zend_hash.h +++ b/Zend/zend_hash.h @@ -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;