2004-12-23 15:16:30 +02:00
|
|
|
#ifndef __HASH_STATE_H__
|
|
|
|
#define __HASH_STATE_H__
|
|
|
|
|
|
|
|
#include "hash.h"
|
|
|
|
#include "jenkins_hash.h"
|
2005-01-21 22:42:33 +02:00
|
|
|
union __hash_state_t
|
2004-12-23 15:16:30 +02:00
|
|
|
{
|
|
|
|
CMPH_HASH hashfunc;
|
2005-01-21 22:42:33 +02:00
|
|
|
jenkins_state_t jenkins;
|
2004-12-23 15:16:30 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|