X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Ffnv.h;h=eaea66b22b8c8f83c6b3c50edc1969b359332246;hb=e8dc709cbb05fd0e69ca0607acbc10fa13e5fe4a;hp=205e5a8a9c9fe24c241069a11e3f7d3a220f98f5;hpb=7c016dfa001ae254bf4e18126f814ee8f0abd821;p=rrdtool.git diff --git a/src/fnv.h b/src/fnv.h index 205e5a8..eaea66b 100644 --- a/src/fnv.h +++ b/src/fnv.h @@ -99,4 +99,16 @@ typedef unsigned long Fnv32_t; */ #define FNV1_32_INIT ((Fnv32_t)0x811c9dc5) -#endif /* __FNV_H__ */ +Fnv32_t fnv_32_buf( + const void *, + size_t, + Fnv32_t); + +Fnv32_t fnv_32_str( + const char *, + Fnv32_t); + +unsigned long FnvHash( + const char *); + +#endif /* __FNV_H__ */