(root)/
glib-2.79.0/
girepository/
cmph/
hash_state.h
       1  #ifndef __HASH_STATE_H__
       2  #define __HASH_STATE_H__
       3  
       4  #include "hash.h"
       5  #include "jenkins_hash.h"
       6  union __hash_state_t
       7  {
       8  	CMPH_HASH hashfunc;
       9  	jenkins_state_t jenkins;
      10  };
      11  
      12  #endif