From 64d742443bfacf5b1fad29f44642780b623f9a15 Mon Sep 17 00:00:00 2001 From: lonkaars Date: Sun, 30 Oct 2022 16:52:29 +0100 Subject: add documentation in header files --- shared/util.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'shared/util.h') diff --git a/shared/util.h b/shared/util.h index 94a3dfe..690a999 100644 --- a/shared/util.h +++ b/shared/util.h @@ -3,4 +3,6 @@ #define WS_MIN(a, b) (((a) < (b)) ? (a) : (b)) #define WS_MAX(a, b) (((a) > (b)) ? (a) : (b)) +/** @brief take the log base 16 of `x` */ unsigned int ws_log16(unsigned int x); + -- cgit v1.2.3