mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-10-31 19:46:16 +01:00
13 lines
176 B
C
13 lines
176 B
C
|
#ifndef __HASH_STATE_H__
|
||
|
#define __HASH_STATE_H__
|
||
|
|
||
|
#include "hash.h"
|
||
|
#include "jenkins_hash.h"
|
||
|
union __hash_state_t
|
||
|
{
|
||
|
CMPH_HASH hashfunc;
|
||
|
jenkins_state_t jenkins;
|
||
|
};
|
||
|
|
||
|
#endif
|