Files
mir_server/sdk/utils/bzhash.h

29 lines
672 B
C
Raw Permalink Normal View History

2025-01-09 17:45:40 +08:00
#ifndef _BZ_HASH_H_
#define _BZ_HASH_H_
/******************************************************************
*
* wyLib库 2008 - 2011
*
*
*
*****************************************************************/
#ifdef __cplusplus
extern "C" {
#endif
/**
* Comments:
* Param const char * str: 0
* Param unsigned int seed:
* @Return unsigned int:
*/
unsigned int bzhashstr(const char *str, unsigned int seed);
#ifdef __cplusplus
}
#endif
#endif