1
Fork 0
turbonss/src/cmph_types.h

16 lines
498 B
C
Raw Normal View History

2004-12-23 15:16:30 +02:00
#ifndef __CMPH_TYPES_H__
#define __CMPH_TYPES_H__
2005-01-18 23:06:08 +02:00
typedef unsigned char cmph_uint8;
typedef unsigned short cmph_uint16;
typedef unsigned int cmph_uint32;
2005-07-29 21:29:30 +03:00
typedef float cmph_float32;
2004-12-23 15:16:30 +02:00
typedef enum { CMPH_HASH_DJB2, CMPH_HASH_FNV, CMPH_HASH_JENKINS,
CMPH_HASH_SDBM, CMPH_HASH_COUNT } CMPH_HASH;
2005-01-18 23:06:08 +02:00
extern const char *cmph_hash_names[];
2006-08-03 23:00:11 +03:00
typedef enum { CMPH_BMZ, CMPH_BMZ8, CMPH_CHM, CMPH_BRZ, CMPH_FCH, CMPH_COUNT } CMPH_ALGO; /* included -- Fabiano */
2005-01-18 23:06:08 +02:00
extern const char *cmph_names[];
2004-12-23 15:16:30 +02:00
#endif