1
0
mirror of https://gitlab.gnome.org/GNOME/glib.git synced 2025-03-11 10:23:36 +01:00
2023-10-15 17:56:05 +01:00

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