diff options
author | David Robillard <d@drobilla.net> | 2020-11-11 12:07:48 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-11-11 12:07:48 +0100 |
commit | 387f52cd29b6078d441da5fd07a951a481c10b6d (patch) | |
tree | 0f72b0cd5cbaeaa13b3ea7867846aea87a3d4a87 /zix/chunk.c | |
parent | e800887f557d9336bb4e8cf2ac20e1f16d81de70 (diff) | |
download | zix-387f52cd29b6078d441da5fd07a951a481c10b6d.tar.gz zix-387f52cd29b6078d441da5fd07a951a481c10b6d.tar.bz2 zix-387f52cd29b6078d441da5fd07a951a481c10b6d.zip |
Remove redundant API attributes in implementation files
Diffstat (limited to 'zix/chunk.c')
-rw-r--r-- | zix/chunk.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 <string.h> -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); |