From 4b266e2f39a8d3a49b58c861c7fd852911cf7fb0 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 1 Jul 2021 00:05:22 -0400 Subject: Use line comments where appropriate --- include/zix/common.h | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) (limited to 'include/zix/common.h') 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); /** -- cgit v1.2.1