Rename crc functions to private namespace
[fio.git] / crc / sha512.h
index 46e10cb777710b32bcd66d8630d2b4db08e6e866..f8b2112aedb1ecc50ada88cd13a7e7cc1050295c 100644 (file)
@@ -1,14 +1,14 @@
 #ifndef FIO_SHA512_H
 #define FIO_SHA512_H
 
-struct sha512_ctx {
+struct fio_sha512_ctx {
        uint64_t state[8];
        uint32_t count[4];
        uint8_t *buf;
        uint64_t W[80];
 };
 
-void sha512_init(struct sha512_ctx *);
-void sha512_update(struct sha512_ctx *, const uint8_t *, unsigned int);
+void fio_sha512_init(struct fio_sha512_ctx *);
+void fio_sha512_update(struct fio_sha512_ctx *, const uint8_t *, unsigned int);
 
 #endif