diff options
Diffstat (limited to 'include/zix/common.h')
-rw-r--r-- | include/zix/common.h | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/include/zix/common.h b/include/zix/common.h index 02481ff..926e281 100644 --- a/include/zix/common.h +++ b/include/zix/common.h @@ -112,21 +112,15 @@ zix_strerror(const ZixStatus status) return "Unknown error"; } -/** - Function for comparing two elements. -*/ +/// Function for comparing two elements typedef int (*ZixComparator)(const void* a, const void* b, const void* user_data); -/** - Function for testing equality of two elements. -*/ +/// Function for testing equality of two elements typedef bool (*ZixEqualFunc)(const void* a, const void* b); -/** - Function to destroy an element. -*/ +/// Function to destroy an element typedef void (*ZixDestroyFunc)(void* ptr); /** |