Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
nyuichi committed Mar 25, 2014
1 parent 2cdd50e commit 985d9af
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ typedef intmax_t xh_key_t;

typedef struct xh_entry xh_entry;

#define xh_key(e,type) ((type)(e))
#define xh_key(e,type) ((type)((e)->key))
#define xh_val(e,type) (*(type *)((e)->val))

typedef int (*xh_hashf)(xh_key_t);
Expand Down Expand Up @@ -52,6 +52,7 @@ This software is licensed under the 2-clause BSD license. See LICENSE for detail
# Version
- 2014.03.25 - Version 0.3.4
- 2014.03.24 - Version 0.3.3
- 2014.03.20 - Version 0.3
Expand Down

0 comments on commit 985d9af

Please sign in to comment.