MySQL 5.6.14 Source Code Document
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
genhash_int.h
1 
4 struct genhash_entry_t {
6  void *key;
8  size_t nkey;
10  void *value;
12  size_t nvalue;
14  struct genhash_entry_t *next;
15 };
16 
17 struct _genhash {
18  size_t size;
19  struct hash_ops ops;
20  struct genhash_entry_t *buckets[];
21 };