From 387f52cd29b6078d441da5fd07a951a481c10b6d Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 11 Nov 2020 12:07:48 +0100 Subject: Remove redundant API attributes in implementation files --- zix/chunk.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'zix/chunk.c') diff --git a/zix/chunk.c b/zix/chunk.c index d1e7e6c..1254d14 100644 --- a/zix/chunk.c +++ b/zix/chunk.c @@ -20,13 +20,13 @@ #include -ZIX_API uint32_t +uint32_t zix_chunk_hash(const ZixChunk* const chunk) { return zix_digest_add(zix_digest_start(), chunk->buf, chunk->len); } -ZIX_API bool +bool zix_chunk_equal(const ZixChunk* a, const ZixChunk* b) { return a->len == b->len && !memcmp(a->buf, b->buf, a->len); -- cgit v1.2.1