We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f572a8a commit e39ba0bCopy full SHA for e39ba0b
Zend/zend_hash.c
@@ -18,6 +18,7 @@
18
+----------------------------------------------------------------------+
19
*/
20
21
+#include "zend_hash.h"
22
#include "zend.h"
23
#include "zend_globals.h"
24
#include "zend_variables.h"
Zend/zend_hash.h
@@ -21,8 +21,11 @@
#ifndef ZEND_HASH_H
#define ZEND_HASH_H
-#include "zend.h"
25
-#include "zend_sort.h"
+#include "zend_alloc.h" // for pefree()
+#include "zend_long.h"
26
+#include "zend_portability.h" // for BEGIN_EXTERN_C
27
+#include "zend_sort.h" // for zend_sort()
28
+#include "zend_string.h" // for ZSTR_VAL()
29
30
#define HASH_KEY_IS_STRING 1
31
#define HASH_KEY_IS_LONG 2
0 commit comments