summaryrefslogtreecommitdiffstats
path: root/zix/hash.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-11-11 12:22:28 +0100
committerDavid Robillard <d@drobilla.net>2020-11-11 12:26:56 +0100
commit3c18febd87234f54c149bb4a6353e3b0e0103db7 (patch)
tree26c32150fada522778e8df63b747fbe10e7aa3dc /zix/hash.h
parent387f52cd29b6078d441da5fd07a951a481c10b6d (diff)
downloadzix-3c18febd87234f54c149bb4a6353e3b0e0103db7.tar.gz
zix-3c18febd87234f54c149bb4a6353e3b0e0103db7.tar.bz2
zix-3c18febd87234f54c149bb4a6353e3b0e0103db7.zip
Add const, pure, and malloc function attributes
Diffstat (limited to 'zix/hash.h')
-rw-r--r--zix/hash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zix/hash.h b/zix/hash.h
index 9546a64..2550676 100644
--- a/zix/hash.h
+++ b/zix/hash.h
@@ -73,7 +73,7 @@ zix_hash_free(ZixHash* hash);
/**
Return the number of elements in `hash`.
*/
-ZIX_API size_t
+ZIX_PURE_API size_t
zix_hash_size(const ZixHash* hash);
/**