diff options
author | Antony Dovgal <tony2001@php.net> | 2009-01-09 19:16:02 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2009-01-09 19:16:02 +0000 |
commit | f4e5ed247c80dd5b9a0a7ce25aabf22a5423980b (patch) | |
tree | 7a0578463c51521893284cd8521fa8a9b0068edf /Zend/zend_ts_hash.h | |
parent | fe5b1552883ef99132a6b9f3e760c6b644049300 (diff) | |
download | php-git-f4e5ed247c80dd5b9a0a7ce25aabf22a5423980b.tar.gz |
add zend_ts_hash_copy_to_hash()
Diffstat (limited to 'Zend/zend_ts_hash.h')
-rw-r--r-- | Zend/zend_ts_hash.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_ts_hash.h b/Zend/zend_ts_hash.h index 617d14f9db..099ee0d015 100644 --- a/Zend/zend_ts_hash.h +++ b/Zend/zend_ts_hash.h @@ -97,6 +97,7 @@ ZEND_API int zend_ts_hash_index_exists(TsHashTable *ht, ulong h); /* Copying, merging and sorting */ ZEND_API void zend_ts_hash_copy(TsHashTable *target, TsHashTable *source, copy_ctor_func_t pCopyConstructor, void *tmp, uint size); +ZEND_API void zend_ts_hash_copy_to_hash(HashTable *target, TsHashTable *source, copy_ctor_func_t pCopyConstructor, void *tmp, uint size); ZEND_API void zend_ts_hash_merge(TsHashTable *target, TsHashTable *source, copy_ctor_func_t pCopyConstructor, void *tmp, uint size, int overwrite); ZEND_API void zend_ts_hash_merge_ex(TsHashTable *target, TsHashTable *source, copy_ctor_func_t pCopyConstructor, uint size, merge_checker_func_t pMergeSource, void *pParam); ZEND_API int zend_ts_hash_sort(TsHashTable *ht, sort_func_t sort_func, compare_func_t compare_func, int renumber TSRMLS_DC); |