mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-06 01:16:17 +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
|