| 123456789101112131415161718192021222324252627 |
- /*
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2022-03-16 tyx first implementation
- */
- #ifndef CB_HASHFUN_H_
- #define CB_HASHFUN_H_
- #include "cb_def.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- cb_uint32_t cb_hash_string(const void *k);
- long cb_hash_string_cmp(const void *d, const void *s);
- cb_uint32_t cb_hash_uint32(const void *k);
- long cb_hash_uint32_cmp(const void *d, const void *s);
- #ifdef __cplusplus
- }
- #endif
- #endif
|