|
|
|
@ -115,13 +115,10 @@ typedef struct _zend_hash_key { |
|
|
|
|
|
|
|
typedef int (*apply_func_args_t)(void *pDest, int num_args, va_list args, zend_hash_key *hash_key); |
|
|
|
|
|
|
|
#define ZEND_STD_HASH_APPLIER \ |
|
|
|
int (*)(void *element, int num_args, va_list args, zend_hash_key *hash_key) |
|
|
|
|
|
|
|
ZEND_API void zend_hash_graceful_destroy(HashTable *ht); |
|
|
|
ZEND_API void zend_hash_apply(HashTable *ht, apply_func_t apply_func); |
|
|
|
ZEND_API void zend_hash_apply_with_argument(HashTable *ht, apply_func_arg_t apply_func, void *); |
|
|
|
ZEND_API void zend_hash_apply_with_arguments(HashTable *ht, ZEND_STD_HASH_APPLIER, int, ...); |
|
|
|
ZEND_API void zend_hash_apply_with_arguments(HashTable *ht, apply_func_args_t apply_func, int, ...); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|