diff options
Diffstat (limited to 'src/hash/fletcher.h')
| -rw-r--r-- | src/hash/fletcher.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/hash/fletcher.h b/src/hash/fletcher.h index d66692f..cae169f 100644 --- a/src/hash/fletcher.h +++ b/src/hash/fletcher.h @@ -2,15 +2,15 @@ #include <stdint.h> struct fletcher8_hash { - uint8_t s1, s2; + uint8_t s1, s2; }; struct fletcher16_hash { - uint16_t s1, s2; + uint16_t s1, s2; }; struct fletcher32_hash { - uint32_t s1, s2; + uint32_t s1, s2; }; uint8_t fletcher8(uint8_t*,size_t); @@ -41,4 +41,4 @@ int l_fletcher16_final(lua_State*); int l_fletcher8(lua_State*); int l_fletcher8_init(lua_State*); int l_fletcher8_update(lua_State*); -int l_fletcher8_final(lua_State*);
\ No newline at end of file +int l_fletcher8_final(lua_State*); |
