diff options
Diffstat (limited to 'zix/chunk.h')
-rw-r--r-- | zix/chunk.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zix/chunk.h b/zix/chunk.h index 162df41..193e537 100644 --- a/zix/chunk.h +++ b/zix/chunk.h @@ -35,10 +35,10 @@ typedef struct { size_t len; /**< Length of memory chunk */ } ZixChunk; -ZIX_API uint32_t +ZIX_PURE_API uint32_t zix_chunk_hash(const ZixChunk* chunk); -ZIX_API bool +ZIX_PURE_API bool zix_chunk_equal(const ZixChunk* a, const ZixChunk* b); #ifdef __cplusplus |