1
Fork 0
turbonss/src/hash_state.h

13 lines
176 B
C
Raw Normal View History

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